/* =============================================
   RUDAVIA — LUKSUS CISZY
   Premium "Quiet Luxury" Design System
   ============================================= */

:root {
    /* Earth Palette */
    --bg:          #0e110e;
    --bg-warm:     #131511;
    --pine:        #1e2b1f;
    --peat:        #1f1a15;
    --peat-light:  #2a2218;
    --water:       #162024;
    --water-deep:  #0e181c;
    --sand:        #d6cdb8;
    --sand-dim:    #9a9283;
    --sand-bright: #efe8d8;
    --accent:      #7a5c3e;
    --accent-glow: #a87b4f;
    --cream:       #f5f0e6;

    /* Typography */
    --font-display: 'Cinzel', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body:    'Montserrat', sans-serif;

    /* Motion */
    --ease-lux:  cubic-bezier(0.16, 1, 0.3, 1);
    --ease-snap: cubic-bezier(0.85, 0, 0.15, 1);
    --ease-out:  cubic-bezier(0.33, 1, 0.68, 1);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
    background: var(--bg);
    color: var(--sand);
    font-family: var(--font-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body { overflow-x: hidden; }
body.loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ── NOISE / DOT GRID OVERLAY ── */
.noise-overlay {
    position: fixed; inset: 0;
    background-image: radial-gradient(rgba(214,205,184,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 9999;
}

/* ── CUSTOM CURSOR ── */
.custom-cursor {
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 100000;
    mix-blend-mode: difference;
}
.cursor-dot {
    width: 6px; height: 6px;
    background: var(--sand);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease-lux), height 0.3s var(--ease-lux), background 0.3s;
}
.cursor-ring {
    position: absolute; top: -16px; left: -16px;
    width: 38px; height: 38px;
    border: 1px solid rgba(214,205,184,0.3);
    border-radius: 50%;
    transition: width 0.4s var(--ease-lux), height 0.4s var(--ease-lux), top 0.4s var(--ease-lux), left 0.4s var(--ease-lux), opacity 0.4s;
}
.cursor-label {
    position: absolute; top: -40px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    font-family: var(--font-display);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s var(--ease-lux);
}
.custom-cursor.hover .cursor-dot { width: 60px; height: 60px; background: rgba(214,205,184,0.08); }
.custom-cursor.hover .cursor-ring { width: 80px; height: 80px; top: -37px; left: -37px; border-color: rgba(214,205,184,0.5); }
.custom-cursor.hover .cursor-label { opacity: 1; }

@media (hover: none) { .custom-cursor { display: none; } }



/* ========================================================
   PRELOADER
   ======================================================== */
.preloader {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 99999;
    display: flex; align-items: center; justify-content: center;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    display: flex; gap: 6px; justify-content: center;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.pl-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
}
.preloader-sub {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    font-style: italic;
    letter-spacing: 0.2em;
    color: var(--sand-dim);
    margin-top: 16px;
    opacity: 0;
}
.preloader-bar {
    width: 180px; height: 1px;
    background: rgba(214,205,184,0.15);
    margin: 30px auto 0;
    overflow: hidden;
}
.preloader-fill {
    width: 0%; height: 100%;
    background: var(--sand);
    transition: none;
}



/* ========================================================
   NAVIGATION
   ======================================================== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 32px 48px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    opacity: 0; transform: translateY(-20px);
    transition: background 0.5s, backdrop-filter 0.5s;
}
.navbar.scrolled {
    background: rgba(14,17,14,0.85);
    backdrop-filter: blur(20px);
    padding: 20px 48px;
}
.nav-brand a {
    font-family: var(--font-display);
    font-size: 1.4rem; letter-spacing: 0.25em;
    font-weight: 400;
    display: flex; align-items: center;
}
.nav-logo {
    width: 160px;
    height: auto;
    flex-shrink: 0;
    filter: brightness(1.3) contrast(1.1);
    transition: filter 0.3s, width 0.3s;
}
.nav-logo:hover { filter: brightness(1.6); }
.footer-logo {
    width: 140px;
    height: auto;
    flex-shrink: 0;
    filter: brightness(1.2);
}
.nav-menu {
    display: flex; gap: 48px; list-style: none;
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    font-weight: 300;
}
.link-anim { position: relative; padding-bottom: 4px; }
.link-anim::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 1px; background: var(--sand);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.5s var(--ease-lux);
}
.link-anim:hover::after { transform: scaleX(1); transform-origin: left; }
.cta-nav {
    border: 1px solid rgba(214,205,184,0.3);
    padding: 10px 24px !important;
    border-radius: 100px;
    transition: background 0.4s, color 0.4s;
}
.cta-nav::after { display: none; }
.cta-nav:hover { background: var(--sand); color: var(--bg); }

/* Hamburger */
.nav-hamburger {
    display: none; flex-direction: column; gap: 6px;
    width: 28px; z-index: 1001;
}
.nav-hamburger span {
    display: block; width: 100%; height: 1px;
    background: var(--sand);
    transition: transform 0.4s var(--ease-lux), opacity 0.3s;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed; inset: 0;
    background: var(--bg);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s var(--ease-lux);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin-bottom: 32px; }
.mobile-menu a {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 5vw, 3rem);
    letter-spacing: 0.15em; text-transform: uppercase;
    opacity: 0; transform: translateY(30px);
    display: inline-block;
    transition: opacity 0.5s var(--ease-lux), transform 0.5s var(--ease-lux);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open li:nth-child(1) a { transition-delay: 0.1s; }
.mobile-menu.open li:nth-child(2) a { transition-delay: 0.2s; }
.mobile-menu.open li:nth-child(3) a { transition-delay: 0.3s; }



/* ========================================================
   HERO — CINEMATIC FULLSCREEN
   ======================================================== */
.hero {
    position: relative;
    height: 100vh; min-height: 600px;
    display: flex; align-items: center;
    padding: 0 8vw;
    overflow: hidden;
}
.hero-image-wrap {
    position: absolute; inset: 0;
    z-index: 0; overflow: hidden;
}
.hero-image {
    width: 100%; height: 120%;
    position: absolute; top: -10%; left: 0;
    will-change: transform;
}
.hero-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.1) saturate(0.85);
}
.hero-vignette {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(14,17,14,0.95) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 0%, rgba(14,17,14,0.6) 0%, transparent 50%),
        linear-gradient(to top, var(--bg) 0%, transparent 30%);
    z-index: 1;
}
.hero-grain {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative; z-index: 3;
    max-width: 700px;
}
.hero-eyebrow {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.7rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--sand-dim);
    margin-bottom: 36px;
    opacity: 0;
}
.eyebrow-line {
    display: inline-block;
    width: 40px; height: 1px;
    background: var(--accent-glow);
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.02em;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.title-line {
    display: block; overflow: hidden;
}
.title-word {
    display: inline-block;
    transform: translateY(110%);
    opacity: 0;
}
.hero-desc {
    font-size: 1rem; line-height: 1.9;
    color: var(--sand-dim);
    max-width: 460px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}
.hero-cta {
    display: inline-flex; align-items: center; gap: 16px;
    margin-top: 48px;
    padding: 18px 40px;
    border: 1px solid rgba(214,205,184,0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background 0.5s var(--ease-lux), color 0.5s, border-color 0.5s;
    opacity: 0;
    transform: translateY(20px);
}
.cta-arrow {
    transition: transform 0.4s var(--ease-lux);
    font-size: 1.2rem;
}
.hero-cta:hover {
    background: var(--sand);
    color: var(--bg);
    border-color: var(--sand);
}
.hero-cta:hover .cta-arrow { transform: translateX(6px); }

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 48px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 3;
    opacity: 0;
}
.scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, transparent, var(--sand-dim));
    animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}
.scroll-text {
    font-size: 0.6rem; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--sand-dim);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 48px; right: 8vw;
    display: flex; align-items: center; gap: 32px;
    z-index: 3;
    opacity: 0;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 400;
    letter-spacing: 0.05em;
}
.stat-unit {
    font-size: 0.75rem; color: var(--sand-dim);
    letter-spacing: 0.1em;
    margin-left: 2px;
}
.stat-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand-dim);
    margin-top: 4px;
}
.stat-divider {
    width: 1px; height: 36px;
    background: rgba(214,205,184,0.15);
}



/* ========================================================
   TEXT REVEAL SECTION (Horizontal Manifesto)
   ======================================================== */
.text-reveal-section {
    position: relative;
    padding: 15vh 5vw;
    background: var(--bg);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.reveal-sticky-wrap {
    /* usunięto pozycję sticky dla zachowania statycznego układu */
}
.reveal-track {
    max-width: 1400px;
    margin: 0 auto;
}
.reveal-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 6rem);
    letter-spacing: 0.02em;
    font-weight: 400;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.2em 0.4em;
}
.rh-word {
    display: inline-block;
    opacity: 1; /* Statyczny, w pełni widoczny tekst */
}
.rh-word.active { opacity: 1; }
.rh-italic { font-family: var(--font-elegant); font-style: italic; }
.rh-accent { color: var(--accent-glow); }



/* ========================================================
   STORY SCROLLER — IMMERSIVE SCROLLTELLING
   ======================================================== */
.story-scroller {
    position: relative;
    background: var(--bg);
    z-index: 10;
    padding: clamp(80px, 12vh, 160px) var(--container-px);
}
.story-pin-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 6vw;
    align-items: center;
}

/* Left: Image */
.story-images-mask {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}
.story-img-track {
    position: relative;
    width: 100%;
    clip-path: none;
}
.story-img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center 55%;
    filter: brightness(0.6) saturate(0.6) contrast(1.05);
    display: block;
    opacity: 0;
    transform: translateY(40px);
}
.img-frame-border {
    position: absolute; inset: 6%;
    border: 1px solid rgba(214,205,184,0.1);
    pointer-events: none;
    z-index: 2;
}

/* Right: Text */
.story-content-track {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

/* Segments */
.story-segment {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
}
.seg-inner { max-width: 560px; }
.seg-num {
    font-family: var(--font-display);
    font-size: 7rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(214,205,184,0.06);
    position: absolute; top: -20px; right: 0;
    line-height: 1;
    user-select: none;
    opacity: 0;
    transform: translateY(20px);
}
.seg-eyebrow {
    display: block;
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 20px;
}
.story-segment h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 28px;
    text-transform: uppercase;
}
.story-segment p,
.story-segment .cms-rich-text {
    font-size: 1rem; line-height: 1.9;
    color: var(--sand-dim);
    font-weight: 300;
}
.readmore-toggle:hover {
    background: rgba(255,255,255,0.05) !important;
    border-color: var(--accent-glow) !important;
}

/* Mobile */
@media (max-width: 900px) {
    .story-pin-wrap {
        flex-direction: column;
        gap: 40px;
    }
    .story-images-mask { width: 100%; }
    .story-img { aspect-ratio: 1 / 1; }
    .seg-num { font-size: 4rem; top: -10px; }
}

/* ========================================================
   PHILOSOPHY MANIFESTO
   ======================================================== */
.philosophy {
    position: relative;
    padding: 20vh 8vw;
    overflow: hidden;
    background: var(--peat);
    z-index: 10;
}
.philosophy-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative; z-index: 2;
}
.phil-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 48px;
    opacity: 0;
}
.phil-quote {
    display: block;
    margin-bottom: 48px;
}
.pq-line {
    display: block;
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}
.pq-break { height: 16px; }
.pq-accent { color: var(--accent-glow); font-weight: 400; }
.phil-body {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--sand-dim);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
}

/* Decorative Circles */
.phil-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(214,205,184,0.04);
    pointer-events: none;
}
.phil-deco-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.phil-deco-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; }



/* ========================================================
   STATIC HEADLINE BANNER (formerly marquee)
   ======================================================== */
.marquee-section {
    padding: 10vh 5vw;
    overflow: hidden;
    background: var(--peat);
    z-index: 10; position: relative;
}
.marquee-row {
    overflow: visible;
    padding: 12px 0;
    text-align: center;
}
.marquee-inner {
    display: flex;
    justify-content: center;
    white-space: nowrap;
}
.marquee-inner span {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(214,205,184,0.15);
    line-height: 1.3;
}
.marquee-row:nth-child(2) span {
    text-transform: none;
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: clamp(1.6rem, 3.5vw, 3rem);
    -webkit-text-stroke: 1px rgba(214,205,184,0.12);
    letter-spacing: 0.1em;
}
.marquee-left, .marquee-right { animation: none; }



/* ========================================================
   VIP OFFERING GRID
   ======================================================== */
.offer {
    padding: 15vh 5vw;
    background: var(--bg);
    overflow: hidden;
    position: relative; z-index: 10;
}
.offer-header {
    text-align: center;
    margin-bottom: 12vh;
}
.offer-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 20px;
    opacity: 0;
}
.offer-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.grid-layout {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
}

.grid-item {
    position: relative;
    will-change: transform;
    opacity: 0;
    transform: translateY(80px);
}
.gi-2 { margin-top: 15vh; }
.gi-4 { margin-top: 15vh; }

.gi-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}
.gi-img {
    width: 100%; height: 120%;
    position: absolute; top: -10%; left: 0;
    object-fit: cover;
    filter: brightness(0.55) saturate(0.55) contrast(1.05);
    transition: transform 1.2s var(--ease-lux), filter 0.8s;
    will-change: transform;
}
.gi-image-wrap:hover .gi-img { transform: scale(1.08); filter: brightness(0.75) saturate(0.9) contrast(1.05); }
.gi-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,17,14,0.5), transparent 40%);
    transition: opacity 0.5s;
}
.gi-image-wrap:hover .gi-overlay { opacity: 0.3; }

/* Pies w wodzie — chłodny poranny filtr (gi-2) */
.gi-2 .gi-img {
    filter: brightness(0.4) saturate(0.3) contrast(1.1) hue-rotate(15deg);
}
.gi-2 .gi-image-wrap:hover .gi-img {
    filter: brightness(0.6) saturate(0.5) hue-rotate(15deg);
    transform: scale(1.08);
}

/* Torf vignette — płynne wtapianie w czarne tło (gi-4) */
.gi-4 .gi-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(14,17,14,0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

.gi-content { margin-top: 28px; }
.gi-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-glow);
    margin-bottom: 10px;
    display: block;
}
.gi-content h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 12px;
}
.gi-content p {
    color: var(--sand-dim);
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.92rem;
    max-width: 380px;
}



/* ========================================================
   FULL-WIDTH IMAGE BREAK
   ======================================================== */
.image-break {
    position: relative;
    height: 70vh;
    overflow: hidden;
    z-index: 10;
}
.ib-image-wrap {
    position: absolute;
    top: 0; bottom: 0;
    left: 0; right: 0;
    width: 100%;
    overflow: hidden;
}
.ib-img {
    width: 120%; height: 140%;
    max-width: none;
    object-fit: cover;
    position: absolute; top: -20%; left: -10%;
    filter: brightness(0.5) saturate(0.8);
    will-change: transform;
    transform: scale(1.1);
}
.ib-text {
    position: absolute;
    bottom: 8vh; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(14,17,14,0.5);
    padding: 12px 28px;
    border: 1px solid rgba(214,205,184,0.1);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}
.ib-text span {
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand-dim);
}



/* ========================================================
   CONTACT & RESERVATION
   ======================================================== */
.footer-contact {
    position: relative;
    padding: 15vh 5vw 10vh;
    background: var(--water-deep);
    z-index: 10;
}
.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.contact-header {
    text-align: center;
    margin-bottom: 8vh;
}
.contact-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 20px;
    opacity: 0;
}
.contact-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
}
.contact-desc {
    color: var(--sand-dim);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 300;
    opacity: 0;
}

.contact-split {
    display: flex;
    gap: 5vw;
    align-items: flex-start;
}

/* ── Calendar ── */
.booking-calendar {
    flex: 1;
    padding: 36px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(214,205,184,0.06);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}
.cal-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
}
#cal-month-name {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.cal-btn {
    font-size: 1.2rem; padding: 4px 10px;
    border: 1px solid rgba(214,205,184,0.15);
    border-radius: 4px;
    color: var(--sand);
    transition: background 0.3s, border-color 0.3s;
}
.cal-btn:hover { background: rgba(214,205,184,0.1); border-color: var(--sand-dim); }
.cal-nav { display: flex; gap: 8px; }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}
.cal-day-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--sand-dim);
    opacity: 0.5;
    padding-bottom: 12px;
}
.cal-date {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    font-size: 0.85rem;
    color: var(--sand-dim);
    cursor: pointer;
    transition: all 0.3s var(--ease-lux);
    position: relative;
}
.cal-date:hover {
    background: rgba(214,205,184,0.08);
    color: var(--sand);
    transform: scale(1.1);
}
.cal-date.active {
    background: var(--sand);
    color: var(--bg);
    box-shadow: 0 0 24px rgba(214,205,184,0.3);
    transform: scale(1.1);
}
.cal-date.range-active {
    background: rgba(214,205,184,0.12);
    color: var(--sand);
    border-radius: 8px;
}
.cal-date.disabled {
    opacity: 0.12;
    pointer-events: none;
    text-decoration: line-through;
}
.cal-date.hot { color: var(--accent-glow); font-weight: 500; }
.cal-date.hot::after {
    content: '';
    position: absolute; bottom: 3px; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 4px;
    background: var(--accent-glow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-glow);
}

.cal-legend {
    display: flex; gap: 24px;
    margin-top: 20px;
    font-size: 0.7rem; color: var(--sand-dim);
    letter-spacing: 0.08em;
}
.legend-dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}
.dot-active { background: var(--sand); }
.dot-hot { background: var(--accent-glow); }

/* ── Form ── */
.rudavia-form { flex: 1; }
.form-ctrl {
    position: relative;
    margin-bottom: 36px;
}
.form-ctrl input,
.form-ctrl textarea {
    width: 100%; border: none;
    background: transparent;
    border-bottom: 1px solid rgba(214,205,184,0.15);
    padding: 16px 0 12px;
    color: var(--sand-bright);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s;
}
.form-ctrl textarea { resize: none; min-height: 60px; }
.form-ctrl input:focus,
.form-ctrl textarea:focus {
    border-color: var(--accent-glow);
}
.form-ctrl label {
    position: absolute; top: 16px; left: 0;
    font-size: 0.85rem;
    color: var(--sand-dim);
    pointer-events: none;
    transition: all 0.3s var(--ease-lux);
    font-weight: 300;
}
.form-ctrl input:focus ~ label,
.form-ctrl input:not(:placeholder-shown) ~ label,
.form-ctrl textarea:focus ~ label,
.form-ctrl textarea:not(:placeholder-shown) ~ label {
    top: -8px;
    font-size: 0.65rem;
    color: var(--accent-glow);
    letter-spacing: 0.1em;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}
.form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(214,205,184,0.3);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}
.form-checkbox input[type="checkbox"]:checked {
    background: var(--accent-glow);
    border-color: var(--accent-glow);
}
.form-checkbox input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    color: var(--black-base);
    font-size: 12px;
    left: 2px;
    top: -1px;
    font-weight: bold;
}
.form-checkbox label {
    font-size: 0.5rem;
    color: var(--sand-dim);
    line-height: 1.4;
    cursor: pointer;
    font-weight: 300;
    opacity: 0.8;
}

.line-focus {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: transparent;
    overflow: hidden;
}
.line-focus::after {
    content: '';
    position: absolute; inset: 0;
    background: var(--accent-glow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-lux);
}
.form-ctrl input:focus ~ .line-focus::after,
.form-ctrl textarea:focus ~ .line-focus::after {
    transform: scaleX(1);
}

.submit-btn {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 20px 44px;
    border: 1px solid rgba(214,205,184,0.25);
    border-radius: 100px;
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--sand);
    position: relative;
    overflow: hidden;
    transition: color 0.5s, border-color 0.5s;
}
.btn-text, .btn-icon { position: relative; z-index: 2; }
.btn-icon { font-size: 1.1rem; transition: transform 0.3s var(--ease-lux); }
.btn-bg {
    position: absolute; inset: 0;
    background: var(--sand);
    border-radius: 100px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-snap);
    z-index: 1;
}
.submit-btn:hover { color: var(--bg); border-color: var(--sand); }
.submit-btn:hover .btn-bg { transform: scaleX(1); }
.submit-btn:hover .btn-icon { transform: translateX(6px); }



/* ========================================================
   FOOTER
   ======================================================== */
.site-footer {
    width: 100%;
    background: #090b09;
    padding: 40px 5vw;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand-dim);
    z-index: 10; position: relative;
    border-top: 1px solid rgba(214,205,184,0.05);
}
.footer-inner {
    width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px;
}
.f-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
}
.f-tagline {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 0.85rem;
    color: var(--sand-dim);
}
.foot-links { display: flex; gap: 32px; }
.foot-links a { transition: color 0.3s; }
.foot-links a:hover { color: var(--sand); }
.f-credits { display: flex; align-items: center; gap: 8px; }
.f-dot { opacity: 0.3; }



/* ========================================================
   DOŚWIADCZENIA — EXPERIENCES
   ======================================================== */
.experiences {
    padding: 15vh 5vw;
    background: var(--peat);
    overflow: hidden;
    position: relative; z-index: 10;
}
.exp-header {
    text-align: center;
    margin-bottom: 10vh;
}
.exp-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 20px;
    opacity: 0;
}
.exp-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(30px);
}
.exp-subtitle {
    font-family: var(--font-elegant);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--sand-dim);
    opacity: 0;
}

.exp-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
}

.exp-card {
    position: relative;
    opacity: 0;
    transform: translateY(60px);
}
.exp-card:nth-child(2) { margin-top: 12vh; }

.exp-card-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
}
.exp-card-img {
    width: 100%; height: 120%;
    position: absolute; top: -10%; left: 0;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.8);
    transition: transform 0.8s var(--ease-lux), filter 0.5s;
}
.exp-card-image:hover .exp-card-img {
    transform: scale(1.08);
    filter: brightness(0.7) saturate(1.0);
}
.exp-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,17,14,0.7), transparent 50%);
}
.exp-card-number {
    position: absolute; top: 24px; right: 24px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-glow);
    z-index: 2;
}

.exp-card-content { margin-top: 28px; }
.exp-card-tag {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-glow);
    border: 1px solid rgba(168,123,79,0.3);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.exp-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 400;
    margin-bottom: 8px;
}
.exp-card-heading {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 300;
    font-style: italic;
    color: var(--sand-bright);
    margin-bottom: 8px;
}
.exp-card-subtitle {
    font-size: 0.85rem;
    color: var(--accent-glow);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-weight: 300;
}
.exp-card-body {
    color: var(--sand-dim);
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.92rem;
    max-width: 420px;
}

/* — Accent body: warm gold/amber highlight for the lead paragraph — */
.exp-card-body--accent {
    color: #d4a853;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* — Atmosphere body: softer description paragraph — */
.exp-card-body--atmosphere {
    color: rgba(214,205,184,0.55);
    font-size: 0.88rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

/* — VIP service block inside card — */
.exp-card-vip {
    border-top: 1px solid rgba(214,205,184,0.12);
    padding-top: 22px;
    margin-top: 8px;
    max-width: 420px;
}
.exp-vip-heading {
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 16px;
}
.exp-vip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.exp-vip-list li {
    position: relative;
    padding-left: 18px;
    color: var(--sand-dim);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}
.exp-vip-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(214,205,184,0.3);
}
.exp-vip-list li strong {
    color: var(--sand);
    font-weight: 500;
}

/* Experience CTA */
.exp-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 14px 32px;
    border: 1px solid rgba(214,205,184,0.2);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 300;
    color: var(--sand-dim);
    transition: background 0.5s var(--ease-lux), color 0.5s, border-color 0.5s;
}
.exp-cta:hover {
    background: var(--sand);
    color: var(--bg);
    border-color: var(--sand);
}
.exp-cta:hover .cta-arrow {
    transform: translateX(6px);
}






/* ========================================================
   VIP RESOURCES — NATURALNE BOGACTWO & RESET
   ======================================================== */
.vip-resources {
    padding: 18vh 5vw 15vh;
    background: var(--bg);
    overflow: hidden;
    position: relative; z-index: 10;
    border-top: 1px solid rgba(214,205,184, 0.08);
}
.vip-resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}
.vip-header {
    text-align: center;
    margin-bottom: 10vh;
}
.vip-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--accent-glow);
    margin-bottom: 20px;
    opacity: 0;
}
.vip-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(30px);
}

.vip-segments {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12vh;
}
.vip-segment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6vw;
    align-items: center;
    opacity: 0;
    transform: translateY(60px);
}
.vip-seg-reverse {
    direction: rtl;
}
.vip-seg-reverse > * {
    direction: ltr;
}

.vip-seg-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}
.vip-seg-img {
    width: 100%; height: 120%;
    position: absolute; top: -10%; left: 0;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.6) contrast(1.05);
    transition: transform 0.8s var(--ease-lux), filter 0.5s;
}
.vip-seg-image:hover .vip-seg-img {
    transform: scale(1.08);
    filter: brightness(0.7) saturate(0.9) contrast(1.05);
}
.vip-seg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(14,17,14,0.5), transparent 40%);
}

/* Torf vignette — VIP segment 1 */
.vip-segment:first-child .vip-seg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(14,17,14,0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.vip-seg-content {
    padding: 2vh 0;
}
.vip-seg-num {
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--accent-glow);
    margin-bottom: 16px;
    display: block;
}
.vip-seg-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
}
.vip-seg-content p {
    color: var(--sand-dim);
    line-height: 1.9;
    font-weight: 300;
    font-size: 0.95rem;
    max-width: 480px;
}


/* ========================================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================================== */
@media (max-width: 1024px) {
    /* ── Nav ── */
    .custom-cursor { display: none !important; }
    .nav-menu { display: none; }
    .nav-hamburger { display: flex; }
    .navbar { padding: 20px 24px; }
    .navbar.scrolled { padding: 14px 24px; }
    .nav-logo { width: 130px; }

    /* ── Hero ── */
    .hero { padding: 0 6vw; min-height: 100svh; }
    .hero-content { margin-top: 0; }
    .hero-title { font-size: clamp(3rem, 10vw, 5rem); margin-bottom: 28px; }
    .hero-desc { font-size: 0.95rem; max-width: 400px; }
    .hero-cta { margin-top: 36px; padding: 16px 32px; }
    .hero-stats { display: none; }
    .hero-scroll-indicator { display: none; }
    .hero-eyebrow { margin-bottom: 24px; }
    .eyebrow-line { width: 28px; }

    /* ── Text Reveal ── */
    .text-reveal-section { padding: 10vh 6vw; }
    .reveal-headline {
        flex-wrap: wrap;
        white-space: normal;
        font-size: clamp(1.8rem, 5vw, 3rem);
        gap: 0.2em;
    }

    /* ── Story Scroller mobile handled by main @media block above ── */


    /* ── Philosophy ── */
    .philosophy { padding: 10vh 6vw; }
    .phil-deco { display: none; }
    .pq-line { font-size: clamp(1.3rem, 3.5vw, 2rem); }
    .phil-body { font-size: 0.9rem; }

    /* ── Marquee ── */
    .marquee-section { padding: 5vh 0; }
    .marquee-inner span { font-size: clamp(2rem, 5vw, 4rem); }

    /* ── Offer Grid ── */
    .offer { padding: 10vh 6vw; }
    .offer-header { margin-bottom: 8vh; }
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 6vh;
    }
    .gi-2, .gi-4 { margin-top: 0; }
    .gi-image-wrap { aspect-ratio: 4/3; }
    .gi-content h3 { font-size: 1.4rem; }
    .gi-content p { max-width: 100%; }

    /* ── Image Break ── */
    .image-break { height: 45vh; min-height: 280px; }
    .ib-image-wrap { left: 6vw; right: 6vw; }
    .ib-text span {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
        padding: 10px 20px;
    }

    /* ── Contact ── */
    .footer-contact { padding: 10vh 6vw 8vh; }
    .contact-split {
        flex-direction: column;
        gap: 40px;
    }
    .booking-calendar { width: 100%; max-width: 100%; }
    .rudavia-form { width: 100%; max-width: 100%; }
    .contact-title { font-size: clamp(2rem, 6vw, 3.5rem); }
    .contact-desc { font-size: 0.88rem; }

    /* ── Calendar fixes ── */
    .cal-grid { gap: 4px; }
    .cal-date { width: 36px; height: 36px; font-size: 0.8rem; }
    .cal-legend { flex-wrap: wrap; gap: 16px; }

    /* ── Footer ── */
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .foot-links { justify-content: center; flex-wrap: wrap; }
    .f-credits { flex-wrap: wrap; justify-content: center; }

    /* ── Experiences ── */
    .experiences { padding: 10vh 6vw; }
    .exp-grid { grid-template-columns: 1fr; gap: 6vh; }
    .exp-card:nth-child(2) { margin-top: 0; }
    .exp-card-image { aspect-ratio: 16/9; }


    /* ── VIP Resources ── */
    .vip-resources { padding: 12vh 6vw 10vh; }
    .vip-segment { grid-template-columns: 1fr; gap: 4vh; }
    .vip-seg-reverse { direction: ltr; }
    .vip-seg-image { aspect-ratio: 16/9; }
    .vip-seg-content p { max-width: 100%; }
}


/* ========================================================
   RESPONSIVE — PHABLET (≤768px)
   ======================================================== */
@media (max-width: 768px) {
    .hero { padding: 0 7vw; }
    .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); line-height: 0.85; }
    .hero-desc { font-size: 0.9rem; line-height: 1.7; }
    .hero-cta { padding: 15px 30px; font-size: 0.72rem; letter-spacing: 0.18em; }

    .reveal-headline { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }

    .story-segment h2 { font-size: 1.8rem; }
    .story-segment p { font-size: 0.88rem; }

    .offer-header { margin-bottom: 6vh; }
    .offer-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .gi-image-wrap { aspect-ratio: 16/10; }

    .philosophy-inner { text-align: left; }
    .phil-body { margin: 0; }

    /* Calendar responsive grid */
    .booking-calendar { padding: 20px 16px; }
    .cal-date { width: 32px; height: 32px; font-size: 0.78rem; }
    #cal-month-name { font-size: 0.9rem; }
    .cal-btn { font-size: 1rem; padding: 6px 12px; }

    /* Form touch targets */
    .form-ctrl input,
    .form-ctrl textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 14px 0 10px;
    }
    .form-ctrl label { font-size: 0.82rem; }
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 0.75rem;
    }

    .contact-header { margin-bottom: 6vh; }

    /* ── Static Headline Banner ── */
    .marquee-section { padding: 6vh 5vw; }
    .marquee-inner span {
        font-size: clamp(1.4rem, 6vw, 3rem);
        white-space: normal;
        text-align: center;
    }
    .marquee-row:nth-child(2) span {
        font-size: clamp(1rem, 4vw, 2rem);
    }
}


/* ========================================================
   RESPONSIVE — PHONE (≤600px)
   ======================================================== */
@media (max-width: 600px) {
    /* ── Hero ── */
    .hero { padding: 0 20px; align-items: flex-end; padding-bottom: 15vh; }
    .hero-title {
        font-size: clamp(2.4rem, 14vw, 3.8rem);
        margin-bottom: 20px;
    }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; margin-bottom: 20px; }
    .hero-desc { font-size: 0.85rem; line-height: 1.7; max-width: 100%; }
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.68rem;
        margin-top: 28px;
        width: 100%;
        justify-content: center;
    }
    .hero-vignette {
        background:
            radial-gradient(ellipse at 50% 100%, var(--bg) 0%, transparent 50%),
            linear-gradient(to top, var(--bg) 0%, transparent 50%);
    }

    /* ── Text Reveal ── */
    .text-reveal-section { padding: 8vh 20px; }
    .reveal-headline { font-size: clamp(1.4rem, 6vw, 2rem); gap: 0.15em; }

    /* ── Story ── */
    .story-segment { padding: 24px 20px; }
    .story-segment h2 { font-size: 1.5rem; margin-bottom: 12px; }
    .story-segment p { font-size: 0.85rem; line-height: 1.7; }
    .seg-eyebrow { font-size: 0.58rem; margin-bottom: 10px; }

    /* ── Philosophy ── */
    .philosophy { padding: 8vh 20px; }
    .phil-eyebrow { margin-bottom: 32px; font-size: 0.58rem; }
    .pq-line { font-size: clamp(1.1rem, 4vw, 1.4rem); line-height: 1.5; }
    .pq-break { height: 10px; }
    .phil-body { font-size: 0.85rem; line-height: 1.7; }



    /* ── Offer ── */
    .offer { padding: 8vh 20px; }
    .offer-header { margin-bottom: 5vh; }
    .offer-eyebrow { font-size: 0.58rem; }
    .offer-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
    .grid-layout { gap: 5vh; }
    .gi-image-wrap { aspect-ratio: 3/2; border-radius: 3px; }
    .gi-content { margin-top: 20px; }
    .gi-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
    .gi-content p { font-size: 0.85rem; line-height: 1.7; }
    .gi-num { font-size: 0.6rem; margin-bottom: 6px; }

    /* ── Image Break ── */
    .image-break { height: 35vh; min-height: 220px; }
    .ib-image-wrap { left: 20px; right: 20px; }
    .ib-text span { font-size: 0.6rem; padding: 8px 16px; letter-spacing: 0.15em; }

    /* ── Contact ── */
    .footer-contact { padding: 8vh 20px 6vh; }
    .contact-header { margin-bottom: 5vh; }
    .contact-eyebrow { font-size: 0.58rem; }
    .contact-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
    .contact-desc { font-size: 0.82rem; }
    .contact-split { gap: 32px; }

    .booking-calendar { padding: 16px 12px; border-radius: 6px; }
    .cal-header { margin-bottom: 16px; }
    #cal-month-name { font-size: 0.8rem; letter-spacing: 0.1em; }
    .cal-btn { font-size: 0.9rem; padding: 4px 8px; }
    .cal-grid { gap: 2px; }
    .cal-date { width: 28px; height: 28px; font-size: 0.72rem; }
    .cal-day-label { font-size: 0.55rem; padding-bottom: 8px; }
    .cal-legend { font-size: 0.6rem; gap: 12px; margin-top: 14px; }
    .legend-dot { width: 6px; height: 6px; margin-right: 4px; }

    .form-ctrl { margin-bottom: 28px; }
    .submit-btn { padding: 16px 24px; }

    /* ── Footer ── */
    .site-footer { padding: 28px 20px; }
    .f-brand { font-size: 0.9rem; }
    .f-tagline { font-size: 0.75rem; }
    .foot-links { gap: 20px; font-size: 0.6rem; }
    .f-credits { font-size: 0.55rem; }
}


/* ========================================================
   RESPONSIVE — SMALL PHONE (≤400px)
   ======================================================== */
@media (max-width: 400px) {
    .navbar { padding: 16px 16px; }
    .nav-brand a { font-size: 1.1rem; letter-spacing: 0.2em; }
    .nav-logo { width: 110px; }

    .hero { padding: 0 16px; padding-bottom: 12vh; }
    .hero-title { font-size: clamp(2rem, 14vw, 3rem); }
    .hero-eyebrow { font-size: 0.55rem; }
    .hero-desc { font-size: 0.8rem; }

    .reveal-headline { font-size: clamp(1.2rem, 6vw, 1.6rem); }

    .story-segment { padding: 20px 16px; }
    .story-segment h2 { font-size: 1.3rem; }

    .pq-line { font-size: clamp(1rem, 4vw, 1.2rem); }

    .offer { padding: 6vh 16px; }
    .offer-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .gi-content h3 { font-size: 1.1rem; }

    .contact-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .booking-calendar { padding: 12px 8px; }
    .cal-date { width: 26px; height: 26px; font-size: 0.68rem; }

    .footer-contact { padding: 6vh 16px 5vh; }
}


/* ========================================================
   SAFE AREA (Notch / Dynamic Island)
   ======================================================== */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(20px + env(safe-area-inset-top));
    }
    .hero {
        padding-bottom: calc(15vh + env(safe-area-inset-bottom));
    }
    .site-footer {
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
    }
}


/* ========================================================
   REDUCED MOTION
   ======================================================== */
@media (prefers-reduced-motion: reduce) {
    .hero { padding: 0 7vw; }
    .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); line-height: 0.85; }
    .hero-desc { font-size: 0.9rem; line-height: 1.7; }
    .hero-cta { padding: 15px 30px; font-size: 0.72rem; letter-spacing: 0.18em; }

    .reveal-headline { font-size: clamp(1.6rem, 4.5vw, 2.4rem); }

    .story-segment h2 { font-size: 1.8rem; }
    .story-segment p { font-size: 0.88rem; }

    .offer-header { margin-bottom: 6vh; }
    .offer-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .gi-image-wrap { aspect-ratio: 16/10; }

    .philosophy-inner { text-align: left; }
    .phil-body { margin: 0; }

    /* Calendar responsive grid */
    .booking-calendar { padding: 20px 16px; }
    .cal-date { width: 32px; height: 32px; font-size: 0.78rem; }
    #cal-month-name { font-size: 0.9rem; }
    .cal-btn { font-size: 1rem; padding: 6px 12px; }

    /* Form touch targets */
    .form-ctrl input,
    .form-ctrl textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 14px 0 10px;
    }
    .form-ctrl label { font-size: 0.82rem; }
    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
        font-size: 0.75rem;
    }

    .contact-header { margin-bottom: 6vh; }

    /* ── Static Headline Banner ── */
    .marquee-section { padding: 6vh 5vw; }
    .marquee-inner span {
        font-size: clamp(1.4rem, 6vw, 3rem);
        white-space: normal;
        text-align: center;
    }
    .marquee-row:nth-child(2) span {
        font-size: clamp(1rem, 4vw, 2rem);
    }
}


/* ========================================================
   RESPONSIVE — PHONE (≤600px)
   ======================================================== */
@media (max-width: 600px) {
    /* ── Hero ── */
    .hero { padding: 0 20px; align-items: center; text-align: center; padding-bottom: 15vh; }
    .hero-title {
        font-size: clamp(2.4rem, 14vw, 3.8rem);
        margin-bottom: 20px;
    }
    .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; margin-bottom: 20px; }
    .hero-desc { font-size: 0.85rem; line-height: 1.7; max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-cta {
        padding: 14px 28px;
        font-size: 0.68rem;
        margin-top: 28px;
        width: 100%;
        justify-content: center;
    }
    .hero-vignette {
        background:
            radial-gradient(ellipse at 50% 100%, var(--bg) 0%, transparent 50%),
            linear-gradient(to top, var(--bg) 0%, transparent 50%);
    }

    /* ── Text Reveal ── */
    .text-reveal-section { padding: 8vh 20px; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .reveal-headline { font-size: clamp(1.4rem, 6vw, 2rem); gap: 0.15em; justify-content: center; }

    /* ── Story ── */
    .story-segment { padding: 24px 20px; text-align: center; align-items: center; }
    .story-segment h2 { font-size: 1.5rem; margin-bottom: 12px; }
    .story-segment p { font-size: 0.85rem; line-height: 1.7; }
    .seg-eyebrow { font-size: 0.58rem; margin-bottom: 10px; }
    .geneza-excerpt { text-align: center; display: flex; flex-direction: column; align-items: center; }

    /* ── Philosophy ── */
    .philosophy { padding: 8vh 20px; text-align: center; }
    .phil-eyebrow { margin-bottom: 32px; font-size: 0.58rem; }
    .pq-line { font-size: clamp(1.1rem, 4vw, 1.4rem); line-height: 1.5; justify-content: center; }
    .pq-break { height: 10px; }
    .phil-body { font-size: 0.85rem; line-height: 1.7; margin-left: auto; margin-right: auto; }



    /* ── Offer ── */
    .offer { padding: 8vh 20px; text-align: center; }
    .offer-header { margin-bottom: 5vh; }
    .offer-eyebrow { font-size: 0.58rem; }
    .offer-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
    .grid-layout { gap: 5vh; }
    .gi-image-wrap { aspect-ratio: 3/2; border-radius: 3px; }
    .gi-content { margin-top: 20px; display: flex; flex-direction: column; align-items: center; text-align: center; }
    .gi-content h3 { font-size: 1.2rem; margin-bottom: 8px; }
    .gi-content p { font-size: 0.85rem; line-height: 1.7; }
    .gi-num { font-size: 0.6rem; margin-bottom: 6px; }

    /* ── VIP Resources ── */
    .vip-resources { padding: 8vh 20px; text-align: center; }
    .vip-header { margin-bottom: 5vh; }
    .vip-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
    .vip-segments { gap: 6vh; }
    .vip-segment { flex-direction: column; text-align: center; align-items: center; }
    .vip-seg-reverse { flex-direction: column; }
    .vip-seg-image { width: 100%; aspect-ratio: 4/3; margin-bottom: 20px; }
    .vip-seg-content { width: 100%; padding: 0; }
    .vip-seg-content h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .vip-seg-content p { font-size: 0.85rem; line-height: 1.7; }

    /* ── Experiences ── */
    .experiences { padding: 8vh 20px; text-align: center; }
    .exp-header { margin-bottom: 5vh; }
    .exp-title { font-size: clamp(1.6rem, 8vw, 2.5rem); word-break: break-word; }
    .exp-subtitle { font-size: 0.9rem; }
    .exp-grid { grid-template-columns: 1fr; gap: 5vh; }
    .exp-card-image { aspect-ratio: 4/3; }
    .exp-card-content { padding: 24px 16px; text-align: center; align-items: center; display: flex; flex-direction: column; }
    .exp-card-title { font-size: 1.3rem; margin-bottom: 8px; }
    .exp-card-heading { font-size: 1rem; margin-bottom: 12px; }
    .exp-card-subtitle { font-size: 0.85rem; line-height: 1.7; }
    .exp-card-body { font-size: 0.8rem; line-height: 1.7; }

    /* ── Image Break ── */
    .image-break { height: 35vh; min-height: 220px; }
    .ib-image-wrap { left: 20px; right: 20px; }
    .ib-text span { font-size: 0.6rem; padding: 8px 16px; letter-spacing: 0.15em; }

    /* ── Story image crop ── */
    .story-img:first-of-type {
        object-position: 25% center;
    }

    /* ── Contact ── */
    .footer-contact { padding: 8vh 20px 6vh; text-align: center; }
    .contact-header { margin-bottom: 5vh; }
    .contact-eyebrow { font-size: 0.58rem; }
    .contact-title { font-size: clamp(1.6rem, 8vw, 2.5rem); }
    .contact-desc { font-size: 0.82rem; margin-left: auto; margin-right: auto; }
    .contact-split { gap: 32px; display: flex; flex-direction: column; align-items: center; }

    .booking-calendar { padding: 16px 12px; border-radius: 6px; }
    .cal-header { margin-bottom: 16px; }
    #cal-month-name { font-size: 0.8rem; letter-spacing: 0.1em; }
    .cal-btn { font-size: 0.9rem; padding: 4px 8px; }
    .cal-grid { gap: 2px; }
    .cal-date { width: 28px; height: 28px; font-size: 0.72rem; }
    .cal-day-label { font-size: 0.55rem; padding-bottom: 8px; }
    .cal-legend { font-size: 0.6rem; gap: 12px; margin-top: 14px; }
    .legend-dot { width: 6px; height: 6px; margin-right: 4px; }

    .form-ctrl { margin-bottom: 28px; }
    .submit-btn { padding: 16px 24px; }

    /* ── Footer ── */
    .site-footer { padding: 28px 20px; flex-direction: column; text-align: center; gap: 20px; align-items: center; }
    .f-brand { font-size: 0.9rem; }
    .f-tagline { font-size: 0.75rem; }
    .foot-links { gap: 20px; font-size: 0.6rem; justify-content: center; }
    .f-credits { font-size: 0.55rem; margin-top: 10px; }
}


/* ========================================================
   RESPONSIVE — SMALL PHONE (≤400px)
   ======================================================== */
@media (max-width: 400px) {
    .navbar { padding: 16px 16px; }
    .nav-brand a { font-size: 1.1rem; letter-spacing: 0.2em; }
    .nav-logo { width: 110px; }

    .hero { padding: 0 16px; padding-bottom: 12vh; }
    .hero-title { font-size: clamp(2rem, 14vw, 3rem); }
    .hero-eyebrow { font-size: 0.55rem; }
    .hero-desc { font-size: 0.8rem; }

    .reveal-headline { font-size: clamp(1.2rem, 6vw, 1.6rem); }

    .story-segment { padding: 20px 16px; }
    .story-segment h2 { font-size: 1.3rem; }

    .pq-line { font-size: clamp(1rem, 4vw, 1.2rem); }

    .offer { padding: 6vh 16px; }
    .offer-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .gi-content h3 { font-size: 1.1rem; }

    .contact-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .vip-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .exp-title { font-size: clamp(1.4rem, 8vw, 2rem); }
    .booking-calendar { padding: 12px 8px; }
    .cal-date { width: 26px; height: 26px; font-size: 0.68rem; }

    .footer-contact { padding: 6vh 16px 5vh; }
}


/* ========================================================
   SAFE AREA (Notch / Dynamic Island)
   ======================================================== */
@supports (padding-top: env(safe-area-inset-top)) {
    .navbar {
        padding-top: calc(20px + env(safe-area-inset-top));
    }
    .hero {
        padding-bottom: calc(15vh + env(safe-area-inset-bottom));
    }
    .site-footer {
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
    }
}


/* ========================================================
   REDUCED MOTION
   ======================================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .scroll-line { animation: none; }
    .marquee-left, .marquee-right { animation: none; }
}

/* ========================================================
   GENEZA EXCERPT & MODAL (ADDED)
   ======================================================== */
.geneza-excerpt p {
    margin-bottom: 24px;
}
.read-more-btn {
    background: transparent;
    border: none;
    color: var(--accent-glow);
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 2px solid var(--accent-glow);
    transition: color 0.3s ease, border-color 0.3s ease;
    font-weight: 500;
}
.read-more-btn:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Modal */
.geneza-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.geneza-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.gm-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10,12,10, 0.95);
    backdrop-filter: blur(10px);
}
.gm-content {
    position: relative;
    z-index: 2;
    background: var(--bg);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 40px 50px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.geneza-modal.open .gm-content {
    transform: translateY(0);
}
.gm-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: var(--sand-dim);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    margin-bottom: 30px;
    padding: 0;
    transition: color 0.3s ease;
}
.gm-back:hover {
    color: var(--accent-glow);
}
.gm-content .seg-num { display: block; margin-bottom: 10px; }
.gm-content .seg-eyebrow { margin-bottom: 20px; }
.gm-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 400;
}
.gm-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--sand-dim);
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .gm-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }
}

/* Geneza readmore button */
.geneza-readmore-btn {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    display: inline-block;
    margin-top: 24px;
    background: none;
    border: 1px solid rgba(255,153,0,0.3);
    color: #ff9900;
    padding: 12px 32px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 3px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: var(--font-body);
}
.geneza-readmore-btn:hover {
    background: rgba(255,153,0,0.08);
    border-color: #ff9900;
    transform: translateY(-2px);
}

/* Geneza teaser — show a bit more text with gradient */
.geneza-teaser {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}
@media (max-width: 768px) {
    .geneza-teaser {
        max-height: 85px;
    }
}
.geneza-teaser::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 60px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
}
