/* =========================================================================
   Zerrenpach homepage redesign — shared foundation
   Ported from the reference Vercel build (zerrenpach.vercel.app).
   Everything is scoped under .zp-redesign so it never clashes with the
   legacy style.css (which also defines .btn / .section / .wrap etc).
   Each redesigned component puts `zp-redesign` on its outermost element.
   Use CSS classes — never inline styles — inside the components.
   ========================================================================= */

/* ===== Fonts (redesign uses per-weight family names, matching the reference) ===== */
@font-face{font-family:'Axiforma Book';src:url('../fonts/Axiforma-Book.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'Axiforma Medium';src:url('../fonts/Axiforma-Medium.woff2') format('woff2');font-weight:500;font-style:normal;font-display:swap;}
@font-face{font-family:'Axiforma SemiBold';src:url('../fonts/Axiforma-SemiBold.woff2') format('woff2');font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:'Axiforma ExtraBold';src:url('../fonts/Axiforma-ExtraBold.woff2') format('woff2');font-weight:800;font-style:normal;font-display:swap;}
@font-face{font-family:'Axiforma Italic';src:url('../fonts/Axiforma-Italic.woff2') format('woff2');font-weight:400;font-style:italic;font-display:swap;}

/* ===== Tokens ===== */
.zp-redesign{
  --zp-primary:#dc7043; --zp-primary-darker:#b35b37; --zp-primary-lighter:#ff7b44;
  --zp-secondary:#2E604A; --zp-secondary-darker:#2a4c3a; --zp-secondary-lighter:#498364;
  --zp-tertiary:#0AC588; --zp-tertiary-lighter:#99EAA4;
  --zp-light:#f7f5f1; --zp-dark:#181d24; --zp-gray-300:#8f8f8f; --zp-border:#e7e2d8;
  --zp-wrap:1320px;
}

/* ===== Base ===== */
.zp-redesign,
.zp-redesign *{box-sizing:border-box;}
.zp-redesign{
  font-family:'Axiforma Book','Segoe UI',sans-serif;
  color:var(--zp-dark);
  background:var(--zp-light);
  -webkit-font-smoothing:antialiased;
}
.zp-redesign a{color:inherit;text-decoration:none;}
.zp-redesign img{max-width:100%;display:block;}
.zp-redesign h1,.zp-redesign h2,.zp-redesign h3,.zp-redesign h4{margin:0;}
.zp-redesign p{margin:0;line-height:1.6;}

/* ===== Layout container ===== */
.zp-redesign .wrap{max-width:var(--zp-wrap);margin:0 auto;padding:0 40px;}
.zp-redesign.section,
.zp-redesign .section{padding:100px 0;}

/* ===== Eyebrow / typography helpers ===== */
.zp-redesign .eyebrow{
  font-family:'Axiforma SemiBold','Segoe UI',sans-serif;
  letter-spacing:.14em;text-transform:uppercase;font-size:12px;
}

/* ===== Buttons ===== */
.zp-redesign .btn{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:13px;
  border-radius:2px;padding:13px 24px;cursor:pointer;border:none;line-height:1;
}
.zp-redesign .btn-primary{background:var(--zp-primary);color:#fff;}
.zp-redesign .btn-ghost{background:#f1efe9;color:var(--zp-dark);}
.zp-redesign .btn-outline-light{border:1px solid rgba(255,255,255,.55);color:#fff;background:transparent;}
.zp-redesign .btn-text{
  font-size:13px;font-family:'Axiforma Medium','Segoe UI',sans-serif;
  border-bottom:1px solid rgba(255,255,255,.5);padding-bottom:3px;
}

/* ===== Arrow link ===== */
.zp-redesign .link-arrow{
  display:inline-flex;align-items:center;gap:8px;font-size:13px;
  font-family:'Axiforma SemiBold','Segoe UI',sans-serif;color:var(--zp-secondary-darker);
  border-bottom:1px solid var(--zp-secondary-darker);width:fit-content;
  padding-bottom:4px;cursor:pointer;
}
.zp-redesign .link-arrow svg{stroke:var(--zp-secondary-darker);}

/* ===== Shared "go" circle (used on all photo cards) ===== */
.zp-redesign .go-circle{
  width:38px;height:38px;min-width:38px;border-radius:50%;background:#fff;color:var(--zp-dark);
  display:flex;align-items:center;justify-content:center;
  transition:transform .3s cubic-bezier(.25,.74,.22,.99),background .3s ease,color .3s ease;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
}

/* ===== Background noise / grain utility ===== */
.zp-redesign.bg-noise,
.zp-redesign .bg-noise{position:relative;}
.zp-redesign.bg-noise::before,
.zp-redesign .bg-noise::before{
  content:"";position:absolute;inset:0;z-index:0;opacity:.5;
  mix-blend-mode:overlay;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='2.2' intercept='-0.35'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:160px 160px;
}

/* ===== Section head (shared by events / quick actions) ===== */
.zp-redesign .section-head{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:36px;gap:24px;flex-wrap:wrap;
}
.zp-redesign .section-head h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(26px,3vw,34px);margin:0;}
.zp-redesign .section-head .eyebrow{color:var(--zp-primary);margin-bottom:14px;display:block;}
.zp-redesign .section-head p{font-size:14px;line-height:1.7;color:#4b4b46;max-width:360px;text-align:right;margin:0;}

/* ===== Section divider (leaf mark) ===== */
.zp-redesign.section-divider,
.zp-redesign .section-divider{display:flex;align-items:center;max-width:var(--zp-wrap);margin:0 auto;padding:0 40px;}
.zp-redesign .divider-line{flex:1;height:2px;background:var(--zp-border);}
.zp-redesign .divider-icon{
  flex:none;width:56px;height:56px;border-radius:50%;background:var(--zp-secondary-darker);
  color:var(--zp-tertiary-lighter);display:flex;align-items:center;justify-content:center;margin:0 22px;
}

/* ===== Responsive base ===== */
@media (max-width: 720px){
  .zp-redesign.section,
  .zp-redesign .section{padding:64px 0;}
}

/* =========================================================================
   Hero — crossfade + Ken Burns
   ========================================================================= */
.zp-redesign.hero{position:relative;height:720px;overflow:hidden;color:#fff;}
.zp-redesign .hero-slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;transition:opacity 1.5s ease;will-change:opacity,transform;animation:zpHeroKenBurns 18s linear infinite;}
.zp-redesign .hero-slide.active{opacity:1;}
/* YouTube background slide — iframe scaled to cover the hero like background:cover */
.zp-redesign .hero-slide-video{background:#181d24;animation:none;}
.zp-redesign .hero-video-wrap{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:100%;pointer-events:none;overflow:hidden;}
.zp-redesign .hero-video-wrap iframe{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100vw;height:56.25vw;min-height:100%;min-width:177.78vh;}
.zp-redesign .hero-slide:nth-child(1){animation-delay:0s;}
.zp-redesign .hero-slide:nth-child(2){animation-delay:-12s;}
.zp-redesign .hero-slide:nth-child(3){animation-delay:-6s;}
@keyframes zpHeroKenBurns{
  0%{transform:scale(1);animation-timing-function:ease-out;}
  33.333%{transform:scale(1.09);animation-timing-function:step-end;}
  100%{transform:scale(1.09);}
}
.zp-redesign.hero::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,15,12,.72) 0%,rgba(10,15,12,.08) 45%,rgba(10,15,12,.28) 100%);}
.zp-redesign .hero-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:flex-end;padding:0 40px 88px;max-width:var(--zp-wrap);margin:0 auto;}
.zp-redesign .hero-text{transition:opacity .38s ease,transform .38s ease;}
.zp-redesign .hero-text.is-swapping{opacity:0;transform:translateY(14px);}
.zp-redesign .hero-content .eyebrow{color:var(--zp-tertiary-lighter);margin-bottom:18px;}
.zp-redesign .hero-content h1{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(28px,5vw,62px);line-height:1.06;margin:0 0 30px;max-width:640px;letter-spacing:-.01em;}
.zp-redesign .hero-actions{display:flex;align-items:center;gap:18px;}
.zp-redesign .hero-actions .btn-text{border-bottom-color:rgba(255,255,255,.5);}
.zp-redesign .hero-dots{position:absolute;left:40px;bottom:40px;display:flex;gap:8px;z-index:3;max-width:var(--zp-wrap);margin:0 auto;right:40px;}
.zp-redesign .hero-dots button{width:26px;height:2px;background:rgba(255,255,255,.3);border:none;cursor:pointer;padding:0;}
.zp-redesign .hero-dots button.active{background:#fff;}

.zp-redesign .hero-promo{position:absolute;right:40px;bottom:64px;display:flex;flex-direction:column;gap:14px;width:300px;z-index:3;}
.zp-redesign .hero-promo .card{background:rgba(247,245,241,.96);backdrop-filter:blur(6px);border-radius:2px;padding:20px 22px;color:var(--zp-dark);display:block;}
.zp-redesign .hero-promo .card.dark{background:var(--zp-secondary-darker);color:#fff;}
.zp-redesign .hero-promo .card .eyebrow{color:var(--zp-primary);margin-bottom:6px;}
.zp-redesign .hero-promo .card.dark .eyebrow{color:var(--zp-tertiary-lighter);}
.zp-redesign .hero-promo .card .title{display:block;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:18px;line-height:1.25;margin:0 0 10px;color:inherit;}
.zp-redesign .hero-promo .card .links{font-size:12px;line-height:1.4;font-family:'Axiforma Medium','Segoe UI',sans-serif;}
.zp-redesign .hero-promo .card .links p{margin:0;}
.zp-redesign .hero-promo .card .links a{display:inline-flex;align-items:center;gap:6px;padding:2px 0;color:var(--zp-primary);}
.zp-redesign .hero-promo .card.dark .links a{color:var(--zp-tertiary-lighter);}
.zp-redesign .hero-promo .card .links a::after{content:"";width:11px;height:11px;flex:none;background:currentColor;-webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center/contain no-repeat;transition:transform .2s ease;}
.zp-redesign .hero-promo .card .links a:hover::after{transform:translateX(3px);}

@media (max-width: 1080px){
  .zp-redesign .hero-promo{display:none;}
}

/* =========================================================================
   Welcome + webcam
   ========================================================================= */
.zp-redesign.welcome-section{position:relative;overflow:hidden;}
.zp-redesign .welcome-blob{position:absolute;top:-120px;left:-160px;width:520px;height:520px;border-radius:50%;background:radial-gradient(circle at 35% 35%,var(--zp-tertiary-lighter),transparent 70%);opacity:.16;pointer-events:none;z-index:0;}
.zp-redesign .welcome-row{position:relative;z-index:1;display:flex;gap:40px;align-items:center;}
.zp-redesign .welcome-text{flex:1.15 1 0;min-width:0;}
.zp-redesign .welcome-text .eyebrow{color:var(--zp-primary);margin-bottom:16px;display:block;}
.zp-redesign .welcome-text h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(28px,3.4vw,42px);line-height:1.14;margin:0 0 22px;}
.zp-redesign .welcome-text p{font-size:15px;line-height:1.75;color:#4b4b46;max-width:420px;margin:0 0 28px;}
.zp-redesign .welcome-media{flex:1 1 0;min-width:0;position:relative;height:380px;border-radius:2px;overflow:hidden;background-size:cover;background-position:center;box-shadow:0 26px 50px -20px rgba(20,20,15,.3);}
.zp-redesign .welcome-media.has-livecam{background:#000;}
/* HolidayInfo live-cam player fills the media box; badge/dot stay above it.
   The SDK injects a <video> + overlay divs into #holidayinfo, so cover the box
   by stretching #holidayinfo and its injected video/canvas. */
.zp-redesign .welcome-livecam{position:absolute;inset:0;z-index:1;overflow:hidden;}
/* The SDK builds a nested grid inside #holidayinfo whose intrinsic height comes
   from the video aspect ratio, so it overflows the box downward. Force the
   container + its wrapper chain (root-/video- ids and direct grid divs) to the
   box height and clip; the <video> then covers with object-fit:cover. */
.zp-redesign .welcome-livecam #holidayinfo{position:absolute;inset:0;width:100%!important;height:100%!important;max-width:none!important;overflow:hidden!important;}
/* the SDK's first wrapper uses an inline padding-top:56.25% (16:9 ratio hack)
   + min-height that force the height and cause overflow — neutralise both. */
.zp-redesign .welcome-livecam #holidayinfo > div{padding-top:0!important;min-height:0!important;}
.zp-redesign .welcome-livecam #holidayinfo > div,
.zp-redesign .welcome-livecam #holidayinfo [id^="root-"],
.zp-redesign .welcome-livecam #holidayinfo [id^="video-"]{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;max-width:none!important;overflow:hidden!important;}
.zp-redesign .welcome-livecam #holidayinfo video{position:absolute!important;top:0!important;left:0!important;width:100%!important;height:100%!important;object-fit:cover!important;}
/* hide the SDK's scrolling text bar inside the welcome live-cam */
.zp-redesign .welcome-livecam #holidayinfo .marquee{display:none!important;}

/* ---- Re-style the SDK live-cam toolbar (.-hi-cam-toolbar) to match the
   Vercel webcam badge: dark translucent bar at the bottom showing location,
   time and the LIVE temperature. Hide the player controls (play/pause,
   archive, fullscreen) and the progress bars. Selectors use the SDK's
   leading-dash class names (valid CSS). !important beats the SDK inline styles. */
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-toolbar{
  background:rgba(24,29,26,.6)!important;backdrop-filter:blur(4px);
  color:#fff!important;font-family:'Axiforma Medium','Segoe UI',sans-serif!important;font-size:12px!important;
  /* Vercel badge look: floating, inset from the edges, rounded, auto width */
  left:18px!important;right:auto!important;bottom:18px!important;
  width:auto!important;max-width:calc(100% - 36px)!important;
  border-radius:10px!important;overflow:hidden!important;box-shadow:0 8px 24px -10px rgba(0,0,0,.5);
}
/* the inner flex row shouldn't stretch full width anymore */
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-toolbar > div:last-child{justify-content:flex-start!important;gap:8px;}
/* kill the blue/grey progress bars along the top of the toolbar */
.zp-redesign .welcome-livecam #holidayinfo [id$="-progress"],
.zp-redesign .welcome-livecam #holidayinfo [id$="-progressBuffered"],
.zp-redesign .welcome-livecam #holidayinfo [id$="-progressSelection"],
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-toolbar > div:first-child{display:none!important;}
/* hide play/pause + archive, keep location + time + temperature + FULLSCREEN */
.zp-redesign .welcome-livecam #holidayinfo .play-pause,
.zp-redesign .welcome-livecam #holidayinfo .hi-archive-btn{display:none!important;}
/* hide the SDK's own fullscreen button — we use our own .welcome-cam-fs (top-right) */
.zp-redesign .welcome-livecam #holidayinfo #btnFullscreen,
.zp-redesign .welcome-livecam #holidayinfo [id^="btnFullscreen"]{display:none!important;}
/* drop the pin + thermometer SVG icons (the absolutely-positioned fill:#eee divs) */
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-left > div[onclick*="holidayinfo"] > div[style*="fill"],
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-temp > div[style*="fill"]{display:none!important;}
/* tidy the big inline margins/paddings the SDK sets, so everything fits */
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-left > div[onclick*="holidayinfo"]{margin-left:12px!important;padding-left:0!important;padding-right:8px!important;}
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-center .widget-timestamp{padding-left:4px!important;padding-right:4px!important;}
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-temp{margin-right:6px!important;padding:7px 4px!important;font-size:12px!important;line-height:1.1!important;display:flex!important;align-items:center;}
/* compact, evenly-padded cells for the floating badge */
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-left,
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-center,
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-right{display:flex!important;align-items:center;}
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-left > div[onclick*="holidayinfo"]{padding:8px 6px!important;}
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-center .widget-timestamp{padding:8px 6px!important;}
.zp-redesign .welcome-livecam #holidayinfo .-hi-cam-center .widget-timestamp span:first-child{font-size:12px!important;}
.zp-redesign .welcome-media .webcam-badge,
.zp-redesign .welcome-media .live-dot{z-index:3;}
/* when the live cam runs, its re-styled toolbar shows location/time/temp,
   so our static badge is redundant — hide it, keep the live dot. */
.zp-redesign .welcome-media.has-livecam .webcam-badge{display:none;}
.zp-redesign .webcam-badge{position:absolute;left:20px;bottom:20px;background:rgba(24,29,26,.6);backdrop-filter:blur(4px);border-radius:2px;padding:10px 16px;display:flex;gap:16px;align-items:center;color:#fff;font-family:'Axiforma Medium','Segoe UI',sans-serif;font-size:12px;}
.zp-redesign .webcam-badge .sep{opacity:.5;}
/* our own webcam fullscreen toggle (top-right of the live-cam box) */
.zp-redesign .welcome-cam-fs{position:absolute;top:14px;right:14px;z-index:5;width:36px;height:36px;display:flex;align-items:center;justify-content:center;border:none;border-radius:8px;background:rgba(24,29,26,.55);backdrop-filter:blur(4px);color:#fff;cursor:pointer;opacity:.85;transition:opacity .2s ease,background .2s ease;}
.zp-redesign .welcome-cam-fs:hover{opacity:1;background:rgba(24,29,26,.8);}
.zp-redesign .welcome-livecam:fullscreen{width:100vw;height:100vh;}
.zp-redesign .welcome-livecam:fullscreen #holidayinfo,.zp-redesign .welcome-livecam:fullscreen #holidayinfo video{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;}
/* live dot + SDK logo on the LEFT; keep only our fullscreen button top-right */
.zp-redesign .live-dot{position:absolute;left:16px;top:16px;width:8px;height:8px;border-radius:50%;background:var(--zp-tertiary);box-shadow:0 0 0 4px rgba(10,197,136,.25);z-index:4;}
/* HolidayInfo SDK logo/watermark sits top-right by default — flip it to the left
   so it doesn't collide with our top-right fullscreen button */
.zp-redesign .welcome-livecam #holidayinfo [class*="logo"],
.zp-redesign .welcome-livecam #holidayinfo [id*="logo"],
.zp-redesign .welcome-livecam #holidayinfo [class*="-hi-cam-logo"]{
  left:14px!important;right:auto!important;
}

.zp-redesign .welcome-why{flex:0.9 1 0;min-width:0;background:var(--zp-secondary-darker);color:#fff;border-radius:4px;padding:30px 28px;transform:rotate(1.2deg);box-shadow:0 30px 55px -20px rgba(20,20,15,.35);}
.zp-redesign .why-eyebrow{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;letter-spacing:.14em;text-transform:uppercase;font-size:11px;color:var(--zp-tertiary-lighter);margin-bottom:16px;}
.zp-redesign .why-rating{display:flex;align-items:center;gap:10px;margin-bottom:22px;padding-bottom:22px;border-bottom:1px solid rgba(255,255,255,.14);}
.zp-redesign .why-stars{display:flex;gap:2px;color:var(--zp-primary);}
.zp-redesign .why-rating span{font-size:12.5px;color:rgba(255,255,255,.75);}
.zp-redesign .why-rating b{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;color:#fff;font-size:14px;}
.zp-redesign .why-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px;}
.zp-redesign .why-list li{display:flex;align-items:center;gap:12px;font-size:13.5px;line-height:1.4;color:rgba(255,255,255,.9);}
.zp-redesign .why-icon{flex:none;width:32px;height:32px;border-radius:50%;background:rgba(255,255,255,.1);color:var(--zp-tertiary-lighter);display:flex;align-items:center;justify-content:center;}

@media (max-width: 1080px){
  .zp-redesign .welcome-row{flex-wrap:wrap;}
  .zp-redesign .welcome-text{flex:0 0 100%;}
  .zp-redesign .welcome-media{flex:1 1 0;}
  .zp-redesign .welcome-why{flex:1 1 0;}
}
@media (max-width: 720px){
  .zp-redesign .welcome-row{flex-direction:column;}
  .zp-redesign .welcome-text{flex:1;}
  .zp-redesign .welcome-media{width:100%;}
  .zp-redesign .welcome-why{width:100%;transform:none;}
}

/* =========================================================================
   Offers — PINNED HORIZONTAL SCROLL ("Zvýhodnené pobyty")
   Heading pinned top, booking bar pinned bottom (fixed distance from edges);
   the card row lives in the space between and is vertically centered. The
   whole section pins for the vertical distance needed to scroll the cards
   through horizontally — the visitor must scroll past it to continue.
   ========================================================================= */
.zp-redesign.hscroll-outer{--hscroll-hzone:172px;--hscroll-bzone:186px;position:relative;background:var(--zp-light);}
.zp-redesign .hscroll-sticky{position:sticky;top:0;height:100vh;overflow:hidden;}

.zp-redesign .hscroll-noise-half{position:absolute;inset:0;z-index:0;pointer-events:none;opacity:.5;mix-blend-mode:overlay;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='2.2' intercept='-0.35'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");background-size:160px 160px;-webkit-mask-image:linear-gradient(135deg,#000 0%,#000 40%,transparent 58%);mask-image:linear-gradient(135deg,#000 0%,#000 40%,transparent 58%);}
.zp-redesign .hscroll-leaf-deco{position:absolute;z-index:0;right:-40px;bottom:-30px;width:320px;height:auto;opacity:.16;pointer-events:none;}

.zp-redesign .hscroll-head{position:absolute;z-index:1;top:0;left:0;right:0;padding-top:clamp(20px,5vh,44px);text-align:center;}
.zp-redesign .hscroll-head .eyebrow{color:var(--zp-primary);display:block;margin-bottom:8px;}
.zp-redesign .hscroll-head h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(22px,3vw,38px);line-height:1.12;margin:0;color:var(--zp-dark);}
.zp-redesign .hscroll-head p{font-size:13px;line-height:1.5;color:var(--zp-gray-300);max-width:480px;margin:8px auto 0;}

.zp-redesign .hscroll-viewport{position:absolute;z-index:1;top:var(--hscroll-hzone);bottom:var(--hscroll-bzone);left:0;right:0;overflow-x:hidden;overflow-y:visible;display:flex;flex-direction:column;align-items:center;justify-content:center;}
.zp-redesign .hscroll-track{display:flex;align-items:center;align-self:flex-start;gap:22px;padding:0 40px;width:max-content;will-change:transform;}

/* card width follows the image (3/4 of its clamped height) so the caption text
   wraps to the card and the title line-clamp can take effect (no overflow) */
.zp-redesign .hscroll-card{--card-h:clamp(190px,calc(100vh - var(--hscroll-hzone) - var(--hscroll-bzone) - 100px),400px);flex:0 0 auto;display:block;width:calc(var(--card-h) * 0.75);cursor:pointer;transform:scale(1);transform-origin:center center;transition:transform .25s cubic-bezier(.25,.74,.22,.99);color:var(--zp-dark);}
.zp-redesign .hscroll-card .img{position:relative;width:100%;height:var(--card-h);border-radius:4px;overflow:hidden;}
.zp-redesign .hscroll-card .cap{width:100%;}
.zp-redesign .hscroll-card .img-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1);transition:transform .8s cubic-bezier(.16,.7,.24,1);will-change:transform;}
.zp-redesign .hscroll-card:hover .img-bg{transform:scale(1.09);}
.zp-redesign .hscroll-card .badge{position:absolute;top:14px;left:14px;background:var(--zp-primary);color:#fff;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:10px;letter-spacing:.05em;text-transform:uppercase;padding:5px 10px;border-radius:2px;z-index:2;}
.zp-redesign .hscroll-card .go-circle{position:absolute;top:14px;right:14px;z-index:2;}
.zp-redesign .hscroll-card:hover .go-circle{transform:scale(1.15) rotate(45deg);background:var(--zp-primary);color:#fff;}
.zp-redesign .hscroll-card .cap{padding-top:16px;transition:transform .3s ease;}
.zp-redesign .hscroll-card:hover .cap{transform:translateY(2px);}
.zp-redesign .hscroll-card .cap-title{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:16px;color:var(--zp-dark);line-height:1.3;margin-bottom:6px;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.zp-redesign .hscroll-card .cap-upper{font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--zp-gray-300);margin-bottom:4px;}
.zp-redesign .hscroll-card .cap-price{font-size:13px;color:var(--zp-gray-300);}
.zp-redesign .hscroll-card .cap-price b{color:var(--zp-primary);font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:16px;font-weight:600;}

.zp-redesign .hscroll-card-cta .img{background:var(--zp-secondary-darker);}
.zp-redesign .cta-img{display:flex;align-items:center;justify-content:center;}
.zp-redesign .cta-inner{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center;gap:16px;}
.zp-redesign .go-circle.big{position:static;width:52px;height:52px;background:#fff;color:var(--zp-dark);}
.zp-redesign .hscroll-card-cta:hover .go-circle.big{transform:scale(1.15) rotate(45deg);background:var(--zp-primary);color:#fff;}
.zp-redesign .cta-text{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:16px;color:#fff;text-align:center;line-height:1.3;}

.zp-redesign .hscroll-progress-wrap{align-self:stretch;width:100%;margin-top:40px;}
.zp-redesign .hscroll-progress-track{height:3px;background:var(--zp-border);border-radius:3px;position:relative;overflow:hidden;}
.zp-redesign .hscroll-progress-bar{position:absolute;left:0;top:0;height:3px;width:0%;background:var(--zp-primary);border-radius:3px;transition:width .05s linear;}

/* Booking bar — pinned to the bottom of the screen inside the pinned scene */
.zp-redesign .hscroll-sticky .booking-bar-inline{position:absolute;z-index:2;left:50%;bottom:36px;transform:translateX(-50%);margin:0;padding:16px 32px;box-shadow:0 18px 34px -14px rgba(0,0,0,.28);width:calc(100% - 80px);max-width:calc((var(--zp-wrap) - 40px) * 0.8);}
.zp-redesign .booking-bar-inline .title{font-size:16px;}

/* Booking bar base — green bar, white date capsule with big centered numbers.
   width:min(...) drží po stranách gutter (24px), aby karta nikdy nepretiekla
   cez okraj viewportu na užších (tablet) šírkach. */
.zp-redesign .booking-bar{position:relative;z-index:5;width:min(100% - 48px, calc((var(--zp-wrap) + 80px) * 0.8));max-width:calc((var(--zp-wrap) + 80px) * 0.8);margin:-52px auto 0;background:var(--zp-secondary-darker);border-radius:4px;padding:30px 40px;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;box-shadow:0 24px 48px rgba(0,0,0,.28);}
.zp-redesign form.booking-bar{margin-top:0;}
.zp-redesign .date-capsule{cursor:pointer;}
.zp-redesign .booking-bar .title{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:18px;color:#fff;justify-self:start;}
.zp-redesign .booking-bar .btn-booking{justify-self:end;}
.zp-redesign .date-capsule{display:flex;align-items:center;gap:26px;background:#fff;border-radius:16px;padding:10px 26px;}
.zp-redesign .field-icon{width:36px;height:36px;min-width:36px;border-radius:9px;background:#f1efe9;color:var(--zp-dark);display:flex;align-items:center;justify-content:center;}
.zp-redesign .field-date{display:flex;align-items:center;gap:10px;justify-content:center;}
.zp-redesign .field-num{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:30px;line-height:1;color:var(--zp-dark);}
.zp-redesign .field-meta{display:flex;flex-direction:column;justify-content:center;line-height:1.3;text-align:center;}
.zp-redesign .field-dow{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:10.5px;letter-spacing:.05em;text-transform:uppercase;color:var(--zp-dark);}
.zp-redesign .field-mon{font-size:10.5px;color:var(--zp-gray-300);}
.zp-redesign .btn-booking{padding-left:42px;padding-right:42px;}

/* Tablet (901–1100px): 3-stĺpcový booking bar sa nezmestí (nadpis + široká
   dátumová kapsula + tlačidlo) → prepni na 1 stĺpec ako na mobile, ešte kým
   sa nezapne plný mobilný layout na 900px. Platí aj pre pinned inline variant. */
@media (min-width: 901px) and (max-width: 1100px){
  .zp-redesign .booking-bar,
  .zp-redesign .hscroll-sticky .booking-bar-inline{grid-template-columns:1fr;justify-items:stretch;gap:16px;padding:24px 26px;}
  .zp-redesign .booking-bar .title{justify-self:start;}
  .zp-redesign .booking-bar .btn-booking{justify-self:stretch;text-align:center;}
}

@media (max-width: 900px){
  /* no pinning on mobile — the section flows normally */
  .zp-redesign.hscroll-outer{height:auto !important;}
  .zp-redesign .hscroll-sticky{position:relative;top:auto;height:auto;padding:56px 0;}
  .zp-redesign .hscroll-noise-half,.zp-redesign .hscroll-leaf-deco{display:none;}
  .zp-redesign .hscroll-head{position:relative;top:auto;padding-top:0;margin-bottom:28px;}
  .zp-redesign .hscroll-viewport{position:relative;top:auto;bottom:auto;left:auto;right:auto;display:block;overflow:visible;padding:0;margin:0;}
  /* VERTICAL stacked list of stays (no forced horizontal scroll) */
  .zp-redesign .hscroll-track{transform:none !important;display:flex;flex-direction:column;gap:20px;width:auto;padding:0 24px;align-items:stretch;}
  .zp-redesign .hscroll-card{flex:0 0 auto;width:100%;transform:none !important;display:flex;gap:16px;align-items:center;}
  .zp-redesign .hscroll-card .img{width:120px;min-width:120px;height:150px;aspect-ratio:unset;flex:none;}
  .zp-redesign .hscroll-card .cap{padding-top:0;flex:1;}
  .zp-redesign .hscroll-card .cap-title{-webkit-line-clamp:3;}
  /* white arrow circle on the stay cards is redundant on mobile — hide it */
  .zp-redesign .hscroll-card .img .go-circle{display:none;}
  /* CTA card hidden until the list is expanded */
  .zp-redesign .hscroll-card-cta{display:none;}
  /* show only the first 3 stays; the rest revealed by the button */
  .zp-redesign .hscroll-track .hscroll-card:nth-child(n+4){display:none;}
  .zp-redesign .hscroll-track.is-expanded .hscroll-card:nth-child(n+4){display:flex;}
  .zp-redesign .hscroll-more-btn{display:block;margin:24px auto 0;padding:12px 26px;border:1px solid var(--zp-secondary-darker);background:transparent;color:var(--zp-secondary-darker);font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:12px;letter-spacing:.04em;text-transform:uppercase;border-radius:2px;cursor:pointer;}
  .zp-redesign .hscroll-more-btn:hover{background:var(--zp-secondary-darker);color:#fff;}

  /* once expanded, the "show all stays" CTA becomes a full-width orange action button */
  .zp-redesign .hscroll-track.is-expanded .hscroll-card-cta{display:block;width:100%;margin-top:4px;}
  .zp-redesign .hscroll-track.is-expanded .hscroll-card-cta .img{width:100%;min-width:0;height:auto;aspect-ratio:unset;background:var(--zp-primary);border-radius:4px;}
  .zp-redesign .hscroll-track.is-expanded .hscroll-card-cta .cta-inner{flex-direction:row;justify-content:center;gap:12px;padding:16px 22px;}
  .zp-redesign .hscroll-track.is-expanded .hscroll-card-cta .go-circle.big{width:34px;height:34px;min-width:34px;background:rgba(255,255,255,.18);color:#fff;}
  .zp-redesign .hscroll-track.is-expanded .hscroll-card-cta .cta-text{font-size:14px;letter-spacing:.03em;text-transform:uppercase;}
  .zp-redesign .hscroll-progress-wrap{display:none;}

  /* booking bar — full-width card, cleaner date capsule */
  .zp-redesign .hscroll-sticky .booking-bar-inline{position:relative;left:auto;bottom:auto;transform:none;width:calc(100% - 48px);margin:36px 24px 0;max-width:none;}
  .zp-redesign .booking-bar{grid-template-columns:1fr;justify-items:stretch;gap:16px;padding:24px 20px;border-radius:16px;}
  .zp-redesign .booking-bar .title{justify-self:start;font-size:17px;}
  .zp-redesign .booking-bar .btn-booking{justify-self:stretch;text-align:center;padding:15px 24px;font-size:14px;}

  /* date capsule na mobile: dátumy POD SEBA na celú šírku, ikona kalendára preč,
     vodorovný delič medzi dvoma dátumami. */
  .zp-redesign .date-capsule{flex-direction:column;gap:0;padding:8px 18px;align-items:stretch;}
  .zp-redesign .date-capsule .field-icon{display:none;}
  .zp-redesign .date-capsule .field-date{flex:0 0 auto;width:100%;min-width:0;gap:14px;justify-content:flex-start;align-items:center;padding:12px 0;position:relative;}
  /* vodorovná deliaca čiara medzi dátumami (namiesto zvislej) */
  .zp-redesign .date-capsule .field-date + .field-date{padding-left:0;}
  .zp-redesign .date-capsule .field-date + .field-date::before{content:"";position:absolute;left:0;right:0;top:0;height:1px;width:auto;background:#e7e4dc;}
  /* fixná šírka čísla → deň/mesiac začínajú na rovnakej zvislej línii pri oboch dátumoch */
  .zp-redesign .date-capsule .field-num{font-size:26px;flex:0 0 auto;width:44px;text-align:center;line-height:1;}
  .zp-redesign .date-capsule .field-meta{text-align:left;justify-content:center;}

  /* ── Hardening proti pretekaniu booking baru na mobile ──
     Sekcia nesmie horizontálne pretekať a zelený box + biela kapsula musia
     ostať v šírke viewportu. */
  .zp-redesign.hscroll-outer,
  .zp-redesign .hscroll-sticky{overflow-x:clip;}
  .zp-redesign .hscroll-sticky .booking-bar-inline{max-width:100%;box-sizing:border-box;}
  .zp-redesign .booking-bar{max-width:100%;box-sizing:border-box;}
  /* kapsula ani jej obsah nesmú pretlačiť šírku boxu */
  .zp-redesign .date-capsule{max-width:100%;min-width:0;overflow:hidden;box-sizing:border-box;}
  .zp-redesign .date-capsule .field-num{min-width:0;}
  .zp-redesign .date-capsule .field-meta{min-width:0;overflow:hidden;}
  .zp-redesign .date-capsule .field-dow,
  .zp-redesign .date-capsule .field-mon{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
}

/* =========================================================================
   Testimonials — photo bg, animated blob rings, carousel of 3
   ========================================================================= */
.zp-redesign.testimonials-section{position:relative;overflow:hidden;background-size:cover;background-position:center;padding:86px 0 96px;display:flex;flex-direction:column;align-items:center;}
.zp-redesign .testi-blob-deco{position:absolute;z-index:0;top:50%;left:50%;width:0;height:0;pointer-events:none;}
.zp-redesign .blob-ring{position:absolute;top:0;left:0;border:1.5px solid rgba(42,76,58,.22);animation:zpNeighbourBlob 12s ease-in-out infinite;}
.zp-redesign .br-1{width:860px;height:860px;margin:-430px 0 0 -430px;animation-delay:0s;}
.zp-redesign .br-2{width:600px;height:600px;margin:-300px 0 0 -300px;animation-delay:-4s;border-color:rgba(42,76,58,.3);}
.zp-redesign .br-3{width:360px;height:360px;margin:-180px 0 0 -180px;animation-delay:-8s;border-color:rgba(42,76,58,.4);}
.zp-redesign .testi-badge{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;}
.zp-redesign .testi-heading{position:relative;z-index:1;color:var(--zp-secondary-darker);font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(24px,2.8vw,32px);text-align:center;margin:16px 0 48px;}

.zp-redesign .testi-carousel{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;width:100%;max-width:1180px;margin:0 auto;padding:0 74px;}
.zp-redesign .testi-arrow{position:absolute;top:50%;transform:translateY(-50%);width:42px;height:42px;flex:none;border-radius:50%;background:var(--zp-secondary-darker);border:none;color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:3;box-shadow:0 8px 20px -6px rgba(0,0,0,.45);transition:background .25s ease;}
.zp-redesign .testi-arrow:hover{background:var(--zp-secondary);}
.zp-redesign .testi-arrow.prev{left:10px;}
.zp-redesign .testi-arrow.next{right:10px;}

.zp-redesign .testi-track{display:flex;align-items:center;justify-content:center;width:100%;transition:opacity .3s ease,transform .3s ease;}
.zp-redesign .testi-track.is-swapping{opacity:0;transform:scale(.96);}
.zp-redesign .testi-track.is-swapping.dir-next{transform:scale(.96) translateX(-16px);}
.zp-redesign .testi-track.is-swapping.dir-prev{transform:scale(.96) translateX(16px);}
.zp-redesign .testi-slide{flex:0 0 auto;cursor:pointer;transition:all .4s cubic-bezier(.25,.74,.22,.99);}
.zp-redesign .testi-slide[data-role="prev"],
.zp-redesign .testi-slide[data-role="next"]{width:300px;padding:26px 30px;background:rgba(42,76,58,.68);backdrop-filter:blur(3px);border-radius:20px;color:rgba(255,255,255,.85);margin:0 -24px;position:relative;z-index:1;opacity:.85;}
.zp-redesign .testi-slide.is-active{width:440px;padding:42px 46px;background:#fff;color:var(--zp-dark);border-radius:52px 8px 52px 8px;z-index:2;box-shadow:0 34px 64px -18px rgba(0,0,0,.4);opacity:1;}

.zp-redesign .testi-slide .quote-mark{display:block;margin:0 auto 16px;color:#fff;opacity:.3;}
.zp-redesign .testi-slide.is-active .quote-mark{color:var(--zp-primary);opacity:.28;}
.zp-redesign .testi-slide p{font-size:14px;line-height:1.68;margin:0 0 16px;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
.zp-redesign .testi-slide.is-active p{font-size:16px;line-height:1.75;-webkit-line-clamp:4;color:var(--zp-dark);}
.zp-redesign .testi-slide .author{display:flex;flex-direction:column;gap:2px;}
.zp-redesign .testi-slide .author .name{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:13.5px;color:#fff;}
.zp-redesign .testi-slide.is-active .author .name{color:var(--zp-dark);}
.zp-redesign .testi-slide .author .src{font-size:11.5px;color:rgba(255,255,255,.55);font-family:'Axiforma Book','Segoe UI',sans-serif;}
.zp-redesign .testi-slide.is-active .author .src{color:var(--zp-gray-300);}

/* mobile navigation (dots + X/Y counter) — hidden on desktop, arrows drive it there */
.zp-redesign .testi-nav{display:none;position:relative;z-index:1;margin-top:26px;flex-direction:column;align-items:center;gap:12px;}
.zp-redesign .testi-dots{display:flex;align-items:center;justify-content:center;gap:8px;flex-wrap:wrap;max-width:280px;}
.zp-redesign .testi-dots .dot{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.4);border:none;padding:0;cursor:pointer;transition:all .25s ease;}
.zp-redesign .testi-dots .dot.is-active{background:#fff;width:20px;border-radius:4px;}
.zp-redesign .testi-count{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:12px;letter-spacing:.06em;color:rgba(255,255,255,.75);}
.zp-redesign .testi-count-cur{color:#fff;}

@media (max-width: 720px){
  .zp-redesign.testimonials-section{padding:60px 0 56px;}
  /* let neighbouring reviews peek in at the edges + enable horizontal swipe.
     clip horizontally only so the active card's shadow/rounded bottom aren't cut */
  .zp-redesign .testi-carousel{padding:14px 0;overflow-x:clip;overflow-y:visible;}
  .zp-redesign .testi-arrow{display:none;}
  /* dark text on the light photo bg (matches the heading colour) */
  .zp-redesign .testi-nav{margin-top:22px;}
  .zp-redesign .testi-dots .dot{background:rgba(42,76,58,.28);}
  .zp-redesign .testi-dots .dot.is-active{background:var(--zp-secondary-darker);}
  .zp-redesign .testi-count{color:var(--zp-secondary-darker);opacity:.7;}
  .zp-redesign .testi-count-cur{color:var(--zp-secondary-darker);opacity:1;}
  .zp-redesign .testi-track{overflow:visible;gap:0;touch-action:pan-y;}
  .zp-redesign .testi-slide[data-role="prev"],.zp-redesign .testi-slide[data-role="next"]{display:block;width:14vw;min-width:44px;max-width:70px;margin:0;padding:0;background:transparent;backdrop-filter:none;opacity:.28;overflow:hidden;}
  .zp-redesign .testi-slide[data-role="prev"] .quote-mark,.zp-redesign .testi-slide[data-role="next"] .quote-mark,
  .zp-redesign .testi-slide[data-role="prev"] .author,.zp-redesign .testi-slide[data-role="next"] .author{display:none;}
  .zp-redesign .testi-slide[data-role="prev"] p,.zp-redesign .testi-slide[data-role="next"] p{margin:0;padding:22px 10px;font-size:12px;color:rgba(255,255,255,.9);-webkit-line-clamp:6;}
  .zp-redesign .testi-slide.is-active{width:72vw;max-width:420px;margin:0 8px;padding:28px 24px;}
  /* smaller text on mobile so more of the review shows without truncating */
  .zp-redesign .testi-slide.is-active p{font-size:13.5px;line-height:1.6;-webkit-line-clamp:12;margin-bottom:14px;}
  .zp-redesign .testi-slide.is-active .quote-mark{margin-bottom:10px;}
  .zp-redesign .testi-nav{display:flex;}
}

/* =========================================================================
   Events — bento (one big + two small event cards + side text)
   ========================================================================= */
.zp-redesign.events-section{position:relative;overflow:hidden;}
.zp-redesign.events-section .wrap{position:relative;z-index:1;}
.zp-redesign .events-bento{display:flex;gap:24px;align-items:stretch;}

.zp-redesign .event-photo{position:relative;display:block;overflow:hidden;border-radius:4px;color:#fff;}
.zp-redesign .event-photo .event-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1);transition:transform .8s cubic-bezier(.16,.7,.24,1);will-change:transform;}
.zp-redesign .event-photo:hover .event-bg{transform:scale(1.08);}
.zp-redesign .event-photo::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(0deg,rgba(10,15,12,.8) 0%,rgba(10,15,12,.05) 55%);}
.zp-redesign .event-photo .event-tag{position:absolute;top:16px;left:16px;z-index:2;background:rgba(255,255,255,.16);backdrop-filter:blur(4px);color:#fff;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:9.5px;letter-spacing:.07em;text-transform:uppercase;padding:6px 12px;border-radius:2px;}
.zp-redesign .event-photo .go-circle{position:absolute;top:16px;right:16px;z-index:2;}
.zp-redesign .event-photo:hover .go-circle{transform:scale(1.15) rotate(45deg);background:var(--zp-primary);color:#fff;}
.zp-redesign .event-photo .event-cap{position:absolute;left:20px;right:20px;bottom:18px;z-index:2;color:#fff;}
.zp-redesign .event-photo .event-date{font-family:'Axiforma Medium','Segoe UI',sans-serif;font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--zp-tertiary-lighter);margin-bottom:6px;}
.zp-redesign .event-photo .event-title{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:19px;line-height:1.28;}

.zp-redesign .event-photo-big{flex:1 1 50%;aspect-ratio:1/1;}
.zp-redesign .events-side{flex:1 1 50%;min-width:0;display:flex;flex-direction:column;gap:20px;}
.zp-redesign .events-side-photos{display:flex;gap:20px;}
.zp-redesign .event-photo-small{flex:1 1 0;min-width:0;aspect-ratio:1/1;}
.zp-redesign .event-photo-small .event-title{font-size:15.5px;}
.zp-redesign .event-photo-small .event-cap{left:16px;right:16px;bottom:14px;}
.zp-redesign .event-photo-small .event-tag{top:14px;left:14px;font-size:9px;padding:5px 10px;}
.zp-redesign .events-side-text p{font-size:14.5px;line-height:1.72;color:#4b4b46;margin:0 0 20px;max-width:440px;}
.zp-redesign .events-side-text .btn{position:relative;z-index:1;}

@media (max-width: 1080px){
  .zp-redesign .events-bento{flex-direction:column;}
  .zp-redesign .event-photo-big{aspect-ratio:16/9;}
}
@media (max-width: 720px){
  /* mobile: all three events stacked as large full-width cards, CTA below them */
  .zp-redesign .events-bento{gap:16px;}
  .zp-redesign .events-side{gap:16px;}
  .zp-redesign .events-side-photos{flex-direction:column;gap:16px;}
  .zp-redesign .event-photo-big,
  .zp-redesign .event-photo-small{aspect-ratio:5/4;width:100%;min-height:261px;}
  .zp-redesign .event-photo-small .event-title{font-size:18px;}
  .zp-redesign .event-photo .event-title{font-size:20px;}
  /* text + button sit last, button full-width */
  .zp-redesign .events-side-text{margin-top:6px;}
  .zp-redesign .events-side-text .btn{display:block;width:100%;text-align:center;}
}

/* =========================================================================
   Discover — asymmetric floating gallery, heading centered in the middle
   ========================================================================= */
.zp-redesign .float-gallery{display:flex;align-items:center;gap:2.4%;max-width:1760px;margin:0 auto;padding:0 40px;}
.zp-redesign .float-side{display:flex;align-items:flex-start;gap:22px;flex:1 1 0;min-width:0;}
.zp-redesign .float-item{display:block;text-decoration:none;min-width:0;}
.zp-redesign .float-media{position:relative;overflow:hidden;border-radius:4px;box-shadow:0 30px 55px -22px rgba(20,20,15,.35);transition:transform .45s cubic-bezier(.16,.7,.24,1),box-shadow .45s ease;}
.zp-redesign .float-item:hover .float-media{transform:translateY(-10px);box-shadow:0 40px 65px -18px rgba(20,20,15,.4);}
.zp-redesign .float-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1);transition:transform .8s cubic-bezier(.16,.7,.24,1);will-change:transform;}
.zp-redesign .float-item:hover .float-bg{transform:scale(1.08);}
.zp-redesign .float-media .go-circle{position:absolute;top:14px;right:14px;z-index:2;}
.zp-redesign .float-item:hover .float-media .go-circle{transform:scale(1.15) rotate(45deg);background:var(--zp-primary);color:#fff;}
.zp-redesign .float-cap{padding-top:18px;}
.zp-redesign .float-cap .kicker{display:block;font-family:'Axiforma Medium','Segoe UI',sans-serif;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--zp-primary);margin-bottom:5px;}
.zp-redesign .float-cap .title{display:block;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:17px;color:var(--zp-dark);line-height:1.3;}

.zp-redesign .float-heading{flex:0 0 460px;text-align:center;align-self:center;}
.zp-redesign .float-heading .eyebrow{display:block;color:var(--zp-primary);margin-bottom:16px;}
.zp-redesign .float-heading h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(24px,2.4vw,32px);line-height:1.18;margin:0 0 22px;color:var(--zp-dark);}
.zp-redesign .float-heading p{font-size:42px;line-height:1.22;color:var(--zp-dark);margin:0;font-family:'Axiforma Medium','Segoe UI',sans-serif;letter-spacing:-.01em;}

.zp-redesign .fi-1{flex:1.4 1 0;margin-top:0;}
.zp-redesign .fi-1 .float-media{height:560px;transform:rotate(-1.1deg);}
.zp-redesign .fi-1:hover .float-media{transform:rotate(-1.1deg) translateY(-10px);}
.zp-redesign .fi-2{flex:1 1 0;margin-top:150px;}
.zp-redesign .fi-2 .float-media{height:440px;transform:rotate(0.9deg);}
.zp-redesign .fi-2:hover .float-media{transform:rotate(0.9deg) translateY(-10px);}
.zp-redesign .fi-3{flex:1.15 1 0;margin-top:0;}
.zp-redesign .fi-3 .float-media{height:360px;transform:rotate(-0.8deg);}
.zp-redesign .fi-3:hover .float-media{transform:rotate(-0.8deg) translateY(-10px);}
.zp-redesign .fi-4{flex:1.25 1 0;margin-top:170px;}
.zp-redesign .fi-4 .float-media{height:340px;transform:rotate(1.3deg);}
.zp-redesign .fi-4:hover .float-media{transform:rotate(1.3deg) translateY(-10px);}
.zp-redesign .fi-5{flex:0.85 1 0;margin-top:70px;}
.zp-redesign .fi-5 .float-media{height:260px;transform:rotate(-1.6deg);}
.zp-redesign .fi-5:hover .float-media{transform:rotate(-1.6deg) translateY(-10px);}

@media (max-width: 1080px){
  .zp-redesign .float-gallery{flex-direction:column;gap:44px;}
  .zp-redesign .float-heading{order:-1;flex-basis:auto;max-width:560px;margin:0 auto;}
  .zp-redesign .float-side{flex-wrap:wrap;justify-content:center;gap:20px;}
  .zp-redesign .fi-1,.zp-redesign .fi-2,.zp-redesign .fi-3,.zp-redesign .fi-4,.zp-redesign .fi-5{flex:0 0 46%;margin-top:0 !important;}
  .zp-redesign .fi-1 .float-media,.zp-redesign .fi-2 .float-media,.zp-redesign .fi-3 .float-media,.zp-redesign .fi-4 .float-media,.zp-redesign .fi-5 .float-media{height:340px;}
}
@media (max-width: 720px){
  .zp-redesign .float-gallery{padding:0 24px;}
  .zp-redesign .fi-1,.zp-redesign .fi-2,.zp-redesign .fi-3,.zp-redesign .fi-4,.zp-redesign .fi-5{flex:0 0 100%;}
  .zp-redesign .fi-1 .float-media,.zp-redesign .fi-2 .float-media,.zp-redesign .fi-3 .float-media,.zp-redesign .fi-4 .float-media,.zp-redesign .fi-5 .float-media{height:300px;}
  .zp-redesign .float-heading p{font-size:20px;}
}

/* =========================================================================
   Seasonal activities — 1:2 split, tilted floating photo cards
   ========================================================================= */
.zp-redesign.activities-section{position:relative;overflow:hidden;background-size:cover;background-position:center;}
.zp-redesign .activities-leaf-deco{position:absolute;z-index:0;left:50%;transform:translateX(-50%);bottom:250px;width:749px;height:auto;opacity:.24;pointer-events:none;}
.zp-redesign .activities-row{position:relative;z-index:1;display:flex;gap:60px;align-items:center;}
.zp-redesign .activities-intro{flex:1 1 0;min-width:0;}
.zp-redesign .activities-intro .eyebrow{color:var(--zp-primary);display:block;margin-bottom:16px;}
.zp-redesign .activities-intro h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(26px,3vw,36px);line-height:1.16;margin:0 0 18px;color:var(--zp-dark);}
.zp-redesign .activities-intro p{font-size:14.5px;line-height:1.75;color:#4b4b46;margin:0 0 26px;max-width:340px;}

.zp-redesign .activities-gallery{flex:2 1 0;min-width:0;display:grid;grid-template-columns:1fr 1fr;gap:32px 24px;}
.zp-redesign .activity-item{display:block;text-decoration:none;}
.zp-redesign .activity-media{position:relative;overflow:hidden;height:230px;border-radius:4px;box-shadow:0 26px 50px -20px rgba(20,20,15,.35);transition:transform .45s cubic-bezier(.16,.7,.24,1),box-shadow .45s ease;}
.zp-redesign .activity-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1);transition:transform .8s cubic-bezier(.16,.7,.24,1);will-change:transform;}
.zp-redesign .activity-item:hover .activity-bg{transform:scale(1.08);}
.zp-redesign .activity-media::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(15,20,17,.85) 0%,rgba(15,20,17,.04) 55%);}
.zp-redesign .activity-media .go-circle{position:absolute;top:14px;right:14px;z-index:2;width:36px;height:36px;min-width:36px;}
.zp-redesign .activity-item:hover .go-circle{transform:scale(1.15) rotate(45deg);background:var(--zp-primary);color:#fff;}
.zp-redesign .activity-cap{position:absolute;left:18px;right:18px;bottom:16px;z-index:2;color:#fff;}
.zp-redesign .activity-cap .title{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:15.5px;margin-bottom:4px;}
.zp-redesign .activity-cap .meta{font-size:12px;color:rgba(255,255,255,.75);}

.zp-redesign .ai-1{margin-top:0;}
.zp-redesign .ai-1 .activity-media{transform:rotate(-1.2deg);}
.zp-redesign .ai-1:hover .activity-media{transform:rotate(-1.2deg) translateY(-8px);}
.zp-redesign .ai-2{margin-top:38px;}
.zp-redesign .ai-2 .activity-media{transform:rotate(1deg);}
.zp-redesign .ai-2:hover .activity-media{transform:rotate(1deg) translateY(-8px);}
.zp-redesign .ai-3{margin-top:-14px;}
.zp-redesign .ai-3 .activity-media{transform:rotate(-0.8deg);}
.zp-redesign .ai-3:hover .activity-media{transform:rotate(-0.8deg) translateY(-8px);}
.zp-redesign .ai-4{margin-top:24px;}
.zp-redesign .ai-4 .activity-media{transform:rotate(1.3deg);}
.zp-redesign .ai-4:hover .activity-media{transform:rotate(1.3deg) translateY(-8px);}

@media (max-width: 1080px){
  .zp-redesign .activities-row{flex-direction:column;gap:36px;align-items:stretch;}
  .zp-redesign .activities-intro p{max-width:none;}
}
@media (max-width: 720px){
  .zp-redesign .activities-gallery{grid-template-columns:1fr;}
  .zp-redesign .ai-1,.zp-redesign .ai-2,.zp-redesign .ai-3,.zp-redesign .ai-4{margin-top:0;}
}

/* =========================================================================
   Video moment
   ========================================================================= */
.zp-redesign.video-section{position:relative;height:640px;overflow:hidden;color:#fff;background-size:cover;background-position:center;}
/* background YouTube player — fills the section, sits under the overlay+content */
.zp-redesign .video-bg{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none;}
.zp-redesign .video-bg .yt-video,
.zp-redesign .video-bg iframe{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100vw;height:56.25vw;min-height:100%;min-width:177.78vh;border:0;}
/* once the visitor clicks play, reveal the video: fade out overlay + text and
   let the player receive clicks */
.zp-redesign.video-section.is-playing::after{opacity:0;transition:opacity .5s ease;}
.zp-redesign.video-section.is-playing .video-content{opacity:0;pointer-events:none;transition:opacity .4s ease;}
.zp-redesign.video-section.is-playing .video-bg{z-index:3;pointer-events:auto;}
.zp-redesign.video-section::after{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(0deg,rgba(0,0,0,.6) 0%,rgba(0,0,0,.12) 45%,rgba(0,0,0,.35) 100%);}
.zp-redesign .video-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:0 24px;}
.zp-redesign .video-line{width:1px;height:88px;background:rgba(255,255,255,.55);margin-bottom:26px;}
.zp-redesign .video-eyebrow{color:var(--zp-tertiary-lighter);}
.zp-redesign .video-content h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(26px,4vw,42px);line-height:1.18;max-width:760px;margin:16px 0 20px;}
.zp-redesign .video-content p{font-size:15px;line-height:1.75;color:rgba(255,255,255,.82);max-width:560px;margin:0 0 32px;}
.zp-redesign .play-btn{width:64px;height:64px;border-radius:50%;border:1px solid rgba(255,255,255,.6);display:flex;align-items:center;justify-content:center;margin-bottom:24px;cursor:pointer;}

/* =========================================================================
   Quick actions — flat pastel bento (3 top tiles + 4 compact icon tiles)
   ========================================================================= */
.zp-redesign.quick-actions-section{padding-top:50px;padding-bottom:50px;}
.zp-redesign.quick-actions-section .wrap{padding:56px 48px;}
.zp-redesign .qa-row-top{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.zp-redesign .qa-row-bottom{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:20px;}

.zp-redesign .qa2{position:relative;display:flex;flex-direction:column;border-radius:4px;padding:22px;background:var(--qa-bg);color:var(--zp-dark);text-decoration:none;overflow:hidden;transition:transform .3s cubic-bezier(.25,.74,.22,.99),box-shadow .3s ease;}
.zp-redesign .qa2 > *:not(.qa2-deco){position:relative;z-index:1;}
.zp-redesign .qa2-deco{position:absolute;right:-14px;bottom:-14px;width:130px;height:130px;object-fit:contain;opacity:.5;pointer-events:none;z-index:0;transition:transform .4s cubic-bezier(.25,.74,.22,.99);}
.zp-redesign .qa2:hover .qa2-deco{transform:scale(1.06);}
.zp-redesign .qa-top .qa2-deco{width:180px;height:180px;right:-18px;bottom:-18px;}
.zp-redesign .qa2:hover{transform:translateY(-6px);box-shadow:0 22px 40px -18px rgba(20,20,15,.28);}

.zp-redesign .qa-row-bottom .qa2{height:150px;}
.zp-redesign .qa2-icon{width:44px;height:44px;min-width:44px;border-radius:12px;background:rgba(255,255,255,.65);color:var(--qa-fg);display:flex;align-items:center;justify-content:center;}
/* normalise whatever the icon picker emits (lucide svg / FA <i> / raw svg) */
.zp-redesign .qa2-icon svg{width:22px;height:22px;stroke:currentColor;}
.zp-redesign .qa2-icon svg [fill]:not([fill="none"]){fill:currentColor;}
.zp-redesign .qa2-icon i{font-size:20px;line-height:1;color:currentColor;}
.zp-redesign .qa-top .qa2-icon svg{width:26px;height:26px;}
.zp-redesign .qa2-title{display:inline-flex;align-items:center;gap:6px;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:14.5px;line-height:1.3;color:var(--zp-dark);margin-top:auto;}
.zp-redesign .qa2-title svg{flex:none;color:var(--qa-fg);transition:transform .3s cubic-bezier(.25,.74,.22,.99);}
.zp-redesign .qa2.qa-on-dark .qa2-title svg{color:#fff;}
.zp-redesign .qa2:hover .qa2-title svg{transform:translateX(3px);}

.zp-redesign .qa-top{padding:32px;min-height:260px;}
.zp-redesign .qa-top .qa2-top{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;}
.zp-redesign .qa-top .qa2-icon{width:54px;height:54px;min-width:54px;}
.zp-redesign .qa-top .qa2-title{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:22px;margin-top:22px;}
.zp-redesign .qa-top .qa2-desc{font-size:14px;line-height:1.65;color:rgba(24,29,36,.68);margin:10px 0 0;}
.zp-redesign .qa-top .qa2-link{display:flex;align-items:center;gap:8px;margin-top:auto;padding-top:18px;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:12px;letter-spacing:.04em;text-transform:uppercase;color:var(--qa-fg);}
.zp-redesign .qa2-badge{flex:none;background:rgba(255,255,255,.7);color:var(--qa-fg);font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:9.5px;letter-spacing:.06em;text-transform:uppercase;padding:5px 10px;border-radius:20px;}

.zp-redesign .qa2.qa-on-dark{color:#fff;}
.zp-redesign .qa2.qa-on-dark .qa2-icon{background:rgba(255,255,255,.18);color:#fff;}
.zp-redesign .qa2.qa-on-dark .qa2-title{color:#fff;}
.zp-redesign .qa2.qa-on-dark .qa2-desc{color:rgba(255,255,255,.75);}
.zp-redesign .qa2.qa-on-dark .qa2-link{color:#fff;}
.zp-redesign .qa2.qa-on-dark .qa2-badge{background:rgba(255,255,255,.2);color:#fff;}

@media (max-width: 1080px){
  .zp-redesign .qa-row-top{grid-template-columns:1fr 1fr;}
  .zp-redesign .qa-top:nth-child(3){grid-column:span 2;}
  .zp-redesign .qa-row-bottom{grid-template-columns:repeat(2,1fr);}
}
@media (max-width: 640px){
  .zp-redesign.quick-actions-section .wrap{padding:36px 24px;}
  .zp-redesign .qa-row-top{grid-template-columns:1fr;}
  .zp-redesign .qa-top:nth-child(3){grid-column:span 1;}
  .zp-redesign .qa-row-bottom{grid-template-columns:1fr;}
  .zp-redesign .qa-row-bottom .qa2{height:auto;min-height:110px;}
}

/* =========================================================================
   Neighbours / Instagram — scattered rotated photos + blob social icons
   ========================================================================= */
.zp-redesign.neighbours-section{overflow:hidden;padding-top:50px;padding-bottom:30px;}
.zp-redesign .neighbours-head{text-align:center;margin-bottom:60px;}
.zp-redesign .neighbours-head .eyebrow{color:var(--zp-primary);display:block;margin-bottom:14px;}
.zp-redesign .neighbours-head h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(24px,3.2vw,38px);letter-spacing:.03em;text-transform:uppercase;color:var(--zp-dark);margin:0;}

.zp-redesign .neighbours-row{display:flex;align-items:flex-start;justify-content:center;flex-wrap:nowrap;gap:20px;max-width:1760px;margin:0 auto;padding:0 40px;}

.zp-redesign .neighbour-photo{position:relative;display:block;flex:none;overflow:hidden;border-radius:4px;background:var(--zp-secondary-darker);box-shadow:0 20px 40px -22px rgba(20,20,15,.3);transition:transform .3s ease;}
.zp-redesign .neighbour-photo img,
.zp-redesign .neighbour-photo video{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s cubic-bezier(.16,.7,.24,1);}
.zp-redesign .neighbour-photo:hover img,
.zp-redesign .neighbour-photo:hover video{transform:scale(1.08);}
/* play badge for Instagram video items (thumbnail is shown as an image) */
.zp-redesign .neighbour-photo .ig-play{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);z-index:2;width:42px;height:42px;border-radius:50%;background:rgba(0,0,0,.42);backdrop-filter:blur(2px);color:#fff;display:flex;align-items:center;justify-content:center;padding-left:3px;pointer-events:none;}
.zp-redesign .np-1{transform:rotate(-1.2deg);}
.zp-redesign .np-2{transform:rotate(1deg);}
.zp-redesign .np-3{transform:rotate(-0.8deg);}
.zp-redesign .np-4{transform:rotate(1.3deg);}
.zp-redesign .np-5{transform:rotate(-1deg);}
.zp-redesign .np-6{transform:rotate(0.9deg);}

.zp-redesign .np-1{width:516px;height:290px;margin-top:50px;margin-left:-180px;}
.zp-redesign .np-3{width:180px;height:340px;margin-top:80px;}
.zp-redesign .np-4{width:320px;height:400px;margin-top:0;}
.zp-redesign .np-5{width:516px;height:290px;margin-top:60px;margin-right:-180px;}

.zp-redesign .neighbour-col{flex:none;display:flex;flex-direction:column;gap:20px;}
.zp-redesign .neighbour-col .np-2,
.zp-redesign .neighbour-col .np-6{width:250px;height:180px;}

.zp-redesign .neighbour-icon{flex:none;width:108px;height:108px;border:1px solid var(--zp-border);color:var(--zp-dark);display:flex;align-items:center;justify-content:center;transition:border-color .3s ease,color .3s ease;animation:zpNeighbourBlob 9s ease-in-out infinite;}
.zp-redesign .neighbour-icon svg{width:40px;height:40px;}
.zp-redesign .neighbour-icon:hover{border-color:var(--zp-primary);color:var(--zp-primary);}
.zp-redesign .ni-1{margin-top:100px;animation-delay:0s;}
.zp-redesign .ni-2{margin-top:6px;animation-delay:-3s;}
.zp-redesign .ni-3{margin-top:150px;animation-delay:-6s;}

/* blob keyframes — shared by the neighbour icons and the testimonial rings */
@keyframes zpNeighbourBlob{
  0%,100%{border-radius:42% 58% 65% 35% / 45% 45% 55% 55%;}
  25%{border-radius:58% 42% 35% 65% / 55% 62% 38% 45%;}
  50%{border-radius:50% 50% 50% 50% / 60% 40% 60% 40%;}
  75%{border-radius:65% 35% 55% 45% / 40% 55% 45% 60%;}
}

@media (max-width: 1080px){
  .zp-redesign .neighbours-row{flex-wrap:wrap;}
  .zp-redesign .np-1,.zp-redesign .np-3,.zp-redesign .np-4,.zp-redesign .np-5,.zp-redesign .neighbour-col .np-2,.zp-redesign .neighbour-col .np-6{width:200px;height:240px;margin-top:0;}
  .zp-redesign .np-1,.zp-redesign .np-5{margin-left:0;margin-right:0;}
  .zp-redesign .neighbour-icon{width:90px;height:90px;margin-top:0;}
}
@media (max-width: 640px){
  .zp-redesign .neighbours-row{gap:14px;padding:0 24px;}
  .zp-redesign .np-1,.zp-redesign .np-3,.zp-redesign .np-4,.zp-redesign .np-5,.zp-redesign .neighbour-col .np-2,.zp-redesign .neighbour-col .np-6{width:150px;height:190px;}
  .zp-redesign .np-1,.zp-redesign .np-5{margin-left:0;margin-right:0;}
  .zp-redesign .neighbour-icon{width:74px;height:74px;}
}

/* Header + footer are provided by the theme layout, not the redesign — no styles here. */

/* =========================================================================
   Date-range popup (Litepicker) for the offers booking bar — ported from
   content-reservation-banner so the #datepicker-modal renders correctly even
   when that component isn't on the page. The modal lives at body level.
   ========================================================================= */
#datepicker-modal .modal-dialog{max-width:800px;}
#datepicker-modal .modal-content{border-radius:0;background-color:transparent;border:0;}
#litepicker-holder{
  --litepickerBgColor:#fff;--litepickerMonthHeaderTextColor:#333;--litepickerMonthButton:#9e9e9e;
  --litepickerMonthWidth:calc(var(--litepickerDayWidth) * 7);--litepickerMonthWeekdayColor:#9e9e9e;
  --litepickerDayColor:#333;--litepickerDayColorHover:var(--zp-secondary);--litepickerDayIsTodayColor:#dc7043;
  --litepickerDayIsInRange:var(--zp-secondary-lighter);--litepickerDayIsLockedColor:#9e9e9e;
  --litepickerDayIsStartColor:#fff;--litepickerDayIsStartBg:var(--zp-secondary);
  --litepickerDayIsEndColor:#fff;--litepickerDayIsEndBg:var(--zp-secondary);--litepickerDayWidth:53px;
}
#litepicker-holder .litepicker{font-family:'Axiforma Book','Segoe UI',sans-serif;font-size:.8em;display:none;width:100%;margin:0 auto;line-height:43px;}
#litepicker-holder .litepicker .container__main{display:flex;min-height:454px;}
#litepicker-holder .litepicker .container__months{display:flex;flex-wrap:wrap;background:var(--litepickerBgColor);width:calc(var(--litepickerMonthWidth) + 10px);box-sizing:content-box;margin:0 auto;}
#litepicker-holder .litepicker .container__months.columns-2{width:calc((var(--litepickerMonthWidth) * 2) + 20px);outline:10px solid #fff;min-height:454px;}
#litepicker-holder .litepicker .container__months .month-item{padding:5px;width:var(--litepickerMonthWidth);box-sizing:content-box;}
#litepicker-holder .litepicker .container__months .month-item-header{display:flex;justify-content:space-between;font-weight:500;padding:10px 5px;text-align:center;align-items:center;color:var(--litepickerMonthHeaderTextColor);}
#litepicker-holder .litepicker .container__months .month-item-header div{flex:1;}
#litepicker-holder .litepicker .container__months .month-item-header div>.month-item-name{margin-right:5px;font-size:30px;}
#litepicker-holder .litepicker .container__months .month-item-header div>.month-item-year{font-size:21px;color:#969090;}
#litepicker-holder .litepicker .container__months .month-item-header .button-previous-month,#litepicker-holder .litepicker .container__months .month-item-header .button-next-month{visibility:hidden;color:#fff;padding:3px 20px 3px 23px;background:var(--zp-secondary-lighter);line-height:43px;height:53px;cursor:pointer;}
#litepicker-holder .litepicker .container__months .month-item:first-child .button-previous-month{visibility:visible;}
#litepicker-holder .litepicker .container__months .month-item:last-child .button-next-month{visibility:visible;}
#litepicker-holder .litepicker .container__months .month-item-header svg{fill:var(--zp-secondary)!important;pointer-events:none;}
#litepicker-holder .litepicker .container__months .month-item-weekdays-row{display:flex;justify-content:flex-start;color:var(--litepickerMonthWeekdayColor);}
#litepicker-holder .litepicker .container__months .month-item-weekdays-row>div{padding:5px 0;font-size:85%;flex:1;width:var(--litepickerDayWidth);text-align:center;text-transform:uppercase;font-weight:bold;}
#litepicker-holder .litepicker .container__days{display:flex;flex-wrap:wrap;justify-content:flex-start;text-align:center;box-sizing:content-box;}
#litepicker-holder .litepicker .container__days>div,#litepicker-holder .litepicker .container__days>a{padding:5px 0;width:var(--litepickerDayWidth);}
#litepicker-holder .litepicker .container__days .day-item{color:var(--litepickerDayColor);text-align:center;text-decoration:none;transition:color .3s,border .3s;cursor:default;max-height:53px;}
#litepicker-holder .litepicker .container__days .day-item:hover{box-shadow:inset 0 0 0 1px var(--zp-secondary);cursor:pointer;}
#litepicker-holder .litepicker .container__days .day-item:not(.is-end-date):hover{color:var(--zp-secondary);}
#litepicker-holder .litepicker .container__days .day-item.is-today{color:var(--litepickerDayIsTodayColor);}
#litepicker-holder .litepicker .container__days .day-item.is-locked{color:var(--litepickerDayIsLockedColor);background:#f7f7f7;border:1px solid #fff;}
#litepicker-holder .litepicker .container__days .day-item.is-locked:hover{box-shadow:none;cursor:default;}
#litepicker-holder .litepicker .container__days .day-item.is-in-range{background:var(--litepickerDayIsInRange);color:#fff;}
#litepicker-holder .litepicker .container__days .day-item.is-start-date,#litepicker-holder .litepicker .container__days .day-item.is-end-date{color:#fff;background:var(--zp-secondary);position:relative;max-height:53px;}

/* =========================================================================
   Podujatia — graphic poster grid (item-based events)
   ========================================================================= */
.zp-redesign.podujatia-posters{padding:80px 0;}
.zp-redesign .podujatia-posters .podujatia-head{max-width:720px;margin:0 0 48px;}
.zp-redesign .podujatia-posters .podujatia-head .eyebrow{color:var(--zp-primary);display:block;margin-bottom:14px;}
.zp-redesign .podujatia-posters .podujatia-head h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(28px,3.4vw,42px);line-height:1.14;margin:0 0 18px;color:var(--zp-dark);}
.zp-redesign .podujatia-posters .podujatia-head .lead{font-size:15px;line-height:1.75;color:#4b4b46;}
.zp-redesign .podujatia-posters .podujatia-head .lead p{margin:0 0 12px;}

.zp-redesign .poster-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px 28px;}
.zp-redesign .poster-card{display:block;color:var(--zp-dark);}
.zp-redesign .poster-media{position:relative;overflow:hidden;border-radius:6px;aspect-ratio:3/4;box-shadow:0 26px 50px -22px rgba(20,20,15,.4);transition:transform .45s cubic-bezier(.16,.7,.24,1),box-shadow .45s ease;}
.zp-redesign .poster-card:nth-child(3n+1) .poster-media{transform:rotate(-1deg);}
.zp-redesign .poster-card:nth-child(3n+2) .poster-media{transform:rotate(.8deg);}
.zp-redesign .poster-card:nth-child(3n) .poster-media{transform:rotate(-.5deg);}
.zp-redesign .poster-card:hover .poster-media{transform:rotate(0) translateY(-8px);box-shadow:0 40px 70px -20px rgba(20,20,15,.5);}
.zp-redesign .poster-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1);transition:transform .8s cubic-bezier(.16,.7,.24,1);}
.zp-redesign .poster-card:hover .poster-bg{transform:scale(1.06);}
.zp-redesign .poster-media::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,15,12,.35) 0%,rgba(10,15,12,0) 45%);}
.zp-redesign .poster-tag{position:absolute;top:14px;left:14px;z-index:2;background:var(--zp-primary);color:#fff;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:10px;letter-spacing:.06em;text-transform:uppercase;padding:6px 12px;border-radius:2px;}
.zp-redesign .poster-media .go-circle{position:absolute;top:14px;right:14px;z-index:2;}
.zp-redesign .poster-card:hover .go-circle{transform:scale(1.12) rotate(45deg);background:var(--zp-primary);color:#fff;}
.zp-redesign .poster-body{padding-top:18px;}
.zp-redesign .poster-date{font-family:'Axiforma Medium','Segoe UI',sans-serif;font-size:11px;letter-spacing:.05em;text-transform:uppercase;color:var(--zp-primary);margin-bottom:8px;}
.zp-redesign .poster-title{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:20px;line-height:1.25;margin:0 0 8px;}
.zp-redesign .poster-text{font-size:13.5px;line-height:1.6;color:#4b4b46;margin:0 0 12px;}
.zp-redesign .poster-go{display:inline-flex;align-items:center;gap:6px;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:12px;letter-spacing:.03em;text-transform:uppercase;color:var(--zp-secondary-darker);}

@media (max-width: 991px){ .zp-redesign .poster-grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 575px){ .zp-redesign .poster-grid{grid-template-columns:1fr;} }

/* =========================================================================
   Event detail — hero + two-column body (text + info card)
   ========================================================================= */
.zp-redesign.event-detail{color:var(--zp-dark);}
.zp-redesign .event-detail__hero{position:relative;min-height:clamp(320px,46vw,520px);display:flex;align-items:flex-end;overflow:hidden;color:#fff;}
.zp-redesign .event-detail__hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.02);}
.zp-redesign .event-detail__hero::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,15,12,.86) 0%,rgba(10,15,12,.2) 60%,rgba(10,15,12,.35) 100%);}
.zp-redesign .event-detail__hero-inner{position:relative;z-index:1;width:100%;padding:40px 0 48px;}
.zp-redesign .event-detail__back{display:inline-flex;align-items:center;gap:7px;color:rgba(255,255,255,.85);font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:12px;letter-spacing:.04em;text-transform:uppercase;margin-bottom:22px;transition:color .2s ease;}
.zp-redesign .event-detail__back:hover{color:#fff;}
.zp-redesign .event-detail__kicker{display:inline-block;background:var(--zp-primary);color:#fff;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:11px;letter-spacing:.06em;text-transform:uppercase;padding:6px 13px;border-radius:2px;margin-bottom:16px;}
.zp-redesign .event-detail__title{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(30px,4.4vw,54px);line-height:1.08;margin:0 0 18px;color:#fff;max-width:900px;}
.zp-redesign .event-detail__meta{display:flex;flex-wrap:wrap;gap:22px;}
.zp-redesign .event-detail__meta-item{display:inline-flex;align-items:center;gap:8px;font-size:14px;color:rgba(255,255,255,.92);}
.zp-redesign .event-detail__meta-item svg{opacity:.85;}

.zp-redesign .event-detail__body{display:grid;grid-template-columns:1fr 340px;gap:48px;padding:56px 0 80px;align-items:start;}
.zp-redesign .event-detail__perex{font-size:18px;line-height:1.7;color:var(--zp-dark);font-family:'Axiforma Medium','Segoe UI',sans-serif;margin-bottom:24px;}
.zp-redesign .event-detail__perex p{margin:0 0 14px;}
.zp-redesign .event-detail__text{font-size:15.5px;line-height:1.8;color:#4b4b46;}
.zp-redesign .event-detail__text p{margin:0 0 16px;}

.zp-redesign .event-detail__aside{position:sticky;top:100px;}
.zp-redesign .event-detail__card{background:#fff;border:1px solid var(--zp-gray-100,#e7e4dc);border-radius:14px;padding:26px 24px;box-shadow:0 24px 48px -26px rgba(20,20,15,.35);}
.zp-redesign .event-detail__price-label{font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--zp-gray-300);margin-bottom:4px;}
.zp-redesign .event-detail__price{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:24px;color:var(--zp-primary);margin-bottom:18px;}
.zp-redesign .event-detail__price p{margin:0;}
.zp-redesign .event-detail__card-row{display:flex;justify-content:space-between;gap:12px;padding:11px 0;border-top:1px solid var(--zp-gray-100,#eceae4);font-size:13.5px;}
.zp-redesign .event-detail__card-row span{color:var(--zp-gray-300);}
.zp-redesign .event-detail__card-row strong{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;color:var(--zp-dark);text-align:right;}
.zp-redesign .event-detail__cta{display:block;width:100%;text-align:center;margin-top:20px;}

@media (max-width: 860px){
  .zp-redesign .event-detail__body{grid-template-columns:1fr;gap:32px;padding:40px 0 64px;}
  .zp-redesign .event-detail__aside{position:static;}
}

/* (legacy link-list variant, kept for reference) */
.zp-redesign.podujatia-section{padding:80px 0;}
.zp-redesign .podujatia-head{max-width:720px;margin:0 0 44px;}
.zp-redesign .podujatia-head .eyebrow{color:var(--zp-primary);display:block;margin-bottom:14px;}
.zp-redesign .podujatia-head h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(28px,3.4vw,42px);line-height:1.14;margin:0 0 18px;color:var(--zp-dark);}
.zp-redesign .podujatia-head .lead{font-size:15px;line-height:1.75;color:#4b4b46;}
.zp-redesign .podujatia-head .lead p{margin:0 0 12px;}

.zp-redesign .podujatia-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;}
.zp-redesign .podujatia-card{display:flex;align-items:center;gap:18px;padding:22px 26px;background:#fff;border:1px solid var(--zp-border);border-radius:4px;color:var(--zp-dark);transition:transform .3s cubic-bezier(.25,.74,.22,.99),box-shadow .3s ease,border-color .3s ease;}
.zp-redesign .podujatia-card:hover{transform:translateY(-4px);box-shadow:0 20px 40px -22px rgba(20,20,15,.35);border-color:transparent;}
.zp-redesign .podujatia-card .pindex{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:22px;color:var(--zp-tertiary-lighter);flex:none;width:40px;}
.zp-redesign .podujatia-card .ptitle{flex:1;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:18px;line-height:1.25;}
.zp-redesign .podujatia-card .pgo{flex:none;width:40px;height:40px;border-radius:50%;background:var(--zp-secondary-darker);color:#fff;display:flex;align-items:center;justify-content:center;transition:transform .3s cubic-bezier(.25,.74,.22,.99),background .3s ease;}
.zp-redesign .podujatia-card:hover .pgo{background:var(--zp-primary);transform:scale(1.08) rotate(45deg);}

@media (max-width: 720px){
  .zp-redesign .podujatia-grid{grid-template-columns:1fr;}
}

/* =========================================================================
   Related events ("Ďalšie zážitky") — grid at the bottom of an event detail
   ========================================================================= */
.zp-redesign.related-events{padding:64px 0 80px;}
.zp-redesign .related-events__head{margin:0 0 32px;}
.zp-redesign .related-events__head h2{font-family:'Axiforma ExtraBold','Segoe UI',sans-serif;font-size:clamp(24px,2.8vw,34px);color:var(--zp-dark,#181d24);margin:0;}
.zp-redesign .related-events__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.zp-redesign .related-event-card{display:block;color:inherit;text-decoration:none;}
.zp-redesign .related-event-card__media{position:relative;aspect-ratio:3/2;overflow:hidden;border-radius:6px;box-shadow:0 20px 44px -24px rgba(20,20,15,.4);}
.zp-redesign .related-event-card__bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1);transition:transform .7s cubic-bezier(.16,.7,.24,1);}
.zp-redesign .related-event-card:hover .related-event-card__bg{transform:scale(1.06);}
.zp-redesign .related-event-card__media::after{content:"";position:absolute;inset:0;background:linear-gradient(0deg,rgba(10,15,12,.4) 0%,rgba(10,15,12,0) 45%);}
.zp-redesign .related-event-card__tag{position:absolute;top:14px;left:14px;z-index:2;background:var(--primary,#dc7043);color:#fff;font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:10px;letter-spacing:.06em;text-transform:uppercase;padding:6px 12px;border-radius:2px;}
.zp-redesign .related-event-card__go{position:absolute;top:14px;right:14px;z-index:2;width:38px;height:38px;border-radius:50%;background:#fff;color:var(--zp-dark,#181d24);display:flex;align-items:center;justify-content:center;transition:transform .25s ease,background .25s ease,color .25s ease;}
.zp-redesign .related-event-card:hover .related-event-card__go{transform:scale(1.1) rotate(-45deg);background:var(--primary,#dc7043);color:#fff;}
.zp-redesign .related-event-card__body{padding-top:16px;}
.zp-redesign .related-event-card__title{font-family:'Axiforma SemiBold','Segoe UI',sans-serif;font-size:18px;line-height:1.3;color:var(--zp-dark,#181d24);margin:0 0 6px;}
.zp-redesign .related-event-card__where{font-size:12.5px;color:var(--primary,#dc7043);margin-bottom:6px;}
.zp-redesign .related-event-card__where i{margin-right:5px;}
.zp-redesign .related-event-card__perex{font-size:14px;line-height:1.6;color:#4b4b46;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
@media (max-width: 991px){ .zp-redesign .related-events__grid{grid-template-columns:repeat(2,1fr);} }
@media (max-width: 640px){ .zp-redesign .related-events__grid{grid-template-columns:1fr;} }
