/* ===== NISE MOUNTAIN – MAIN STYLES ===== */
/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { width: 100%; overflow-x: hidden; }
body { background: #050505; }

/* ---- ROOT / WRAP ---- */
#nw {
  --gold:       #c5a059;
  --gold-light: #f3e2bc;
  --gold-dark:  #8e6d2f;
  --dark:       #050505;
  --dark2:      #0c0c0c;
  --dark3:      #0e0e0e;
  --sp:         clamp(80px, 9vw, 130px);
  --cmax:       1280px;
  background: var(--dark);
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  color: #fff;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* noise overlay */
#nw::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/pinstriped-suit.png");
  opacity: 0.03; z-index: 99999; pointer-events: none;
}

/* ---- TYPOGRAPHY HELPERS ---- */
#nw .serif  { font-family: 'DM Serif Display', 'Playfair Display', serif; }
#nw .gold   {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
/* Extra space for italic serif descenders + right overhang in headings */
h1 .gold, h2 .gold {
  display: inline-block;
  padding-bottom: 0.32em;
  padding-right:  0.15em;
  margin-bottom: -0.32em;
}
#nw h1, #nw h2, #nw h3, #nw h4, #nw h5, #nw h6 { color: #fff; }

/* ---- GLASS ---- */
.glass {
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--cmax);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
@media(max-width:600px){ .container { padding: 0 20px; } }

/* ---- SECTION BASE ---- */
.section {
  padding: var(--sp) 0;
  position: relative;
}
[id] { scroll-margin-top: 80px; }

/* ---- SECTION LABEL ---- */
.section-label {
  display: block;
  font-size: 10px; font-weight: 800; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px; border-radius: 100px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              box-shadow 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
              background-color 0.35s ease,
              border-color 0.35s ease,
              color 0.35s ease;
  border: none; cursor: pointer;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}
.btn--primary {
  background: linear-gradient(135deg, #c5a059, #8e6d2f);
  color: #fff;
  box-shadow: 0 8px 28px rgba(197,160,89,0.25);
}
.btn--primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(197,160,89,0.5); background: linear-gradient(135deg, #d4ae6a, #a07d3a); }
.btn--primary:active { transform: translateY(-1px) scale(1); }
.btn--ghost {
  color: rgba(255,255,255,0.85); background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px) scale(1.02); }
.btn--ghost:active { transform: translateY(-1px) scale(1); }
.btn--gold {
  background: linear-gradient(135deg, #c5a059, #8e6d2f);
  color: #fff;
  box-shadow: 0 6px 22px rgba(197,160,89,0.3);
}
.btn--gold:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 40px rgba(197,160,89,0.5); background: linear-gradient(135deg, #d4ae6a, #a07d3a); }
.btn--gold:active { transform: translateY(-1px) scale(1); }
.btn--outline {
  background: transparent; color: var(--gold);
  border: 1px solid rgba(197,160,89,0.5);
}
.btn--outline:hover { background: var(--gold); color: #fff; transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(197,160,89,0.4); }
.btn--outline:active { transform: translateY(-1px) scale(1); }
.btn--full { width: 100%; justify-content: center; }
.btn:focus-visible, .gf-tab:focus-visible, .rev-btn:focus-visible, .hdr-cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  box-shadow: 0 0 0 5px rgba(197,160,89,0.15);
}

/* ---- REVEAL ANIMATION ---- */
.nw-reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.nw-reveal.show { opacity: 1; transform: translateY(0); }
.nw-reveal[data-d="1"] { transition-delay: 0.08s; }
.nw-reveal[data-d="2"] { transition-delay: 0.16s; }
.nw-reveal[data-d="3"] { transition-delay: 0.24s; }
.nw-reveal[data-d="4"] { transition-delay: 0.32s; }
.nw-reveal[data-d="5"] { transition-delay: 0.40s; }
.nw-reveal[data-d="6"] { transition-delay: 0.50s; }
.nw-reveal[data-d="7"] { transition-delay: 0.60s; }
.nw-reveal[data-d="8"] { transition-delay: 0.70s; }

/* ======================================================
   HEADER
====================================================== */
#nw-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 22px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s;
  background: transparent;
}
#nw-header.scrolled {
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 8px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 1px 40px rgba(0,0,0,0.4);
}
.hdr-logo { text-decoration: none; }
.hdr-logo img { height: 52px; width: auto; transition: height 0.4s; }
#nw-header.scrolled .hdr-logo img { height: 40px; }

.hdr-nav { display: flex; align-items: center; gap: 36px; }
.hdr-nav .nav-link {
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,1);
  text-decoration: none; transition: color 0.2s;
  position: relative; padding-bottom: 4px;
}
.hdr-nav .nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.hdr-nav .nav-link:hover,
.hdr-nav .nav-link.active { color: var(--gold); }
.hdr-nav .nav-link:hover::after,
.hdr-nav .nav-link.active::after { width: 100%; }

.hdr-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #c5a059, #8e6d2f);
  color: #fff; padding: 12px 28px; border-radius: 100px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.15em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 18px rgba(197,160,89,0.2);
}
.hdr-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(197,160,89,0.45); }

.hdr-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hdr-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hdr-burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.hdr-burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

@media(max-width: 900px) {
  #nw-header { padding: 16px 24px; }
  .hdr-nav { display: none; }
  .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
}

/* ---- MOBILE DRAWER ---- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(5,5,5,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: all; }
.mob-link {
  font-size: 20px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: color 0.2s;
}
.mob-link:hover { color: var(--gold); }
.mob-cta { color: var(--gold); }

/* ---- AMBIENT ORBS ---- */
.amb-orb {
  position: fixed; border-radius: 50%; z-index: 0; pointer-events: none;
  filter: blur(100px); opacity: 0.07;
}
.amb-orb--1 { width: 600px; height: 600px; background: var(--gold); top: -200px; left: -200px; }
.amb-orb--2 { display: none; }
.amb-orb--3 { width: 300px; height: 300px; background: var(--gold); top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ======================================================
   HERO
====================================================== */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__badge   { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both; }
.hero__h1      { animation: hero-in 1s   cubic-bezier(0.22, 1, 0.36, 1) 0.35s both; }
.hero__desc    { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.6s  both; }
.hero__actions { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.8s  both; }
.hero__stats   { animation: hero-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.0s  both; }

.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 2.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.hero__slide--active { opacity: 1; }

@keyframes kb1 { from { transform: scale(1.0)  translate(0%,     0%);   } to { transform: scale(1.1)  translate(-1.5%, -0.8%); } }
@keyframes kb2 { from { transform: scale(1.08) translate(1.5%,  0.5%);  } to { transform: scale(1.0)  translate(-0.5%, -0.5%); } }
@keyframes kb3 { from { transform: scale(1.0)  translate(-1%,   0.5%);  } to { transform: scale(1.1)  translate( 0.5%, -0.8%); } }
@keyframes kb4 { from { transform: scale(1.06) translate(0.5%, -0.5%);  } to { transform: scale(1.0)  translate(-1%,    0.5%); } }
@keyframes hero-slide-in { from { opacity: 0; transform: scale(1.1); } to { opacity: 1; transform: scale(1.0); } }

.hero__slide:nth-child(1) { animation: hero-slide-in 2s cubic-bezier(0.22, 1, 0.36, 1) both, kb1 14s ease-in-out 2s infinite alternate; }
.hero__slide:nth-child(2) { animation: kb2 14s ease-in-out infinite alternate; }
.hero__slide:nth-child(3) { animation: kb3 14s ease-in-out infinite alternate; }
.hero__slide:nth-child(4) { animation: kb4 14s ease-in-out infinite alternate; }

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.30) 0%,
      rgba(5,5,5,0.58) 45%,
      rgba(5,5,5,0.88) 100%
    );
}

.hero__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 50% 32%,
      rgba(197,160,89,0.07) 0%,
      rgba(197,160,89,0.03) 28%,
      transparent 62%
    );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 960px; width: 100%;
  will-change: transform, opacity;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 32px;
}
.pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero__h1 {
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.04em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero__h1 em { font-style: italic; }

.hero__desc {
  color: rgba(255,255,255,0.62);
  font-size: clamp(14px, 1.4vw, 17px); font-weight: 300; line-height: 1.75;
  max-width: 560px; margin: 0 auto 40px;
}

.hero__actions {
  display: flex; justify-content: center; align-items: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
}

.hero__stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 36px;
  max-width: 680px; margin: 0 auto;
}
.hstat { text-align: center; padding: 0 28px; }
.hstat__val { display: block; font-size: 22px; font-weight: 700; color: var(--gold); font-family: 'DM Serif Display', serif; font-style: italic; }
.hstat__lbl { display: block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.25em; color: rgba(255,255,255,0.35); margin-top: 4px; }
.hstat__div { width: 1px; height: 36px; background: rgba(255,255,255,0.08); }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.scroll-cue__track {
  width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.25); border-radius: 12px;
  position: relative; overflow: hidden;
}
.scroll-cue__dot {
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
  position: absolute; left: 50%; top: 6px;
  transform: translateX(-50%);
  animation: scroll-cue-anim 2s ease infinite;
}
@keyframes scroll-cue-anim { 0%{top:6px;opacity:1} 100%{top:24px;opacity:0} }

/* ======================================================
   MARQUEE STRIP
====================================================== */
.strip {
  background: linear-gradient(to bottom, var(--dark) 0%, var(--dark2) 60%);
  padding: 14px 0; overflow: hidden;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.strip__inner {
  display: flex; gap: 80px; white-space: nowrap;
  animation: strip-scroll 26s linear infinite;
}
.strip__inner span {
  font-size: 10px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold);
}
@keyframes strip-scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

@media (max-width: 600px) {
  .strip {
    padding: 10px 0;
  }
  .strip__inner {
    gap: 28px;
    animation-duration: 20s;
  }
  .strip__inner span {
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}

/* ======================================================
   O APARTMÁNE
====================================================== */
.about-section { background: linear-gradient(to bottom, var(--dark2) 0%, var(--dark2) 88%, var(--dark) 100%); padding-bottom: clamp(32px, 5vw, 56px); }
.about-top {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 72px; align-items: center;
  margin-top: 32px; margin-bottom: clamp(48px, 6vw, 80px);
}

@media(max-width:900px){
  .about-top { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 480px; margin: 0 auto; }
}

@media(max-width:700px){
  .floating-badge { right: 8px; bottom: 8px; transform: scale(0.85); transform-origin: bottom right;}
  .floating-tag  { left: 0; top: 8px; transform: scale(0.85); transform-origin: top left;}
  .about-img-frame { aspect-ratio: 4/3; }
}

.about-visual { position: relative; }
.about-img-frame {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}
.about-img-frame img,
.about-img-frame video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 30;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 1;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn.playing {
  opacity: 0;
  pointer-events: none;
}

/* Show button on hover of the container even if playing */
.about-video-frame:hover .video-play-btn {
  opacity: 1;
  pointer-events: auto;
}

.video-play-btn svg {
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}
.img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(5,5,5,0.4));
  z-index: 5;
  pointer-events: none;
}
.floating-badge {
  position: absolute; bottom: 28px; right: -24px;
  padding: 20px 24px; border-radius: 20px; text-align: center;
}
.fb__score { font-size: 36px; font-weight: 700; color: var(--gold); font-family: 'DM Serif Display', serif; display: block; }
.fb__stars { color: var(--gold); font-size: 12px; margin: 4px 0; display: block; }
.fb__lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); display: block; }
.floating-tag {
  position: absolute; top: 28px; left: -20px;
  padding: 10px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8);
}
.floating-tag span { color: var(--gold); }

.about-copy h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 900; line-height: 1.2; margin-bottom: 24px;
}
.about-copy h2 em { font-style: italic; }
.body-text { color: rgba(255,255,255,0.68); font-size: 15px; line-height: 1.85; font-weight: 300; margin-bottom: 18px; }

.apt-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-top: 36px;
}
.apt-hl-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: background 0.25s, border-color 0.25s;
}
.apt-hl-item:hover {
  background: rgba(197,160,89,0.06);
  border-color: rgba(197,160,89,0.2);
}
.apt-hl-icon {
  color: var(--gold); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(197,160,89,0.1);
  border-radius: 10px;
}
.apt-hl-text strong {
  display: block; font-size: 13px; font-weight: 700; color: #fff;
}
.apt-hl-text span {
  display: block; font-size: 9px; margin-top: 3px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.13em;
}
@media(max-width:500px) {
  .apt-highlights { grid-template-columns: 1fr; }
}

/* ======================================================
   COMFORT CARD (merged vybavenie intro)
====================================================== */
.comfort-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}
.comfort-card::before {
  content: '';
  position: absolute; top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.3) 50%, transparent);
  pointer-events: none;
}



.comfort-img {
  overflow: hidden;
}
.comfort-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.comfort-body {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.comfort-body__h3 {
  font-family: 'DM Serif Display', 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900; line-height: 1.15; margin-bottom: 18px; color: #fff;
}
.comfort-body__h3 em { font-style: italic; }

.comfort-list {
  list-style: none;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 44px;
}
.comfort-list li {
  display: flex; align-items: center; gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.65);
}
.comfort-list li:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.comfort-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 28px; height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(197,160,89,0.3));
}

/* ======================================================
   VYBAVENIE / AMENITIES
====================================================== */
.amenities-section { background: var(--dark); padding-top: clamp(40px, 5vw, 64px); }
.amenities-section .comfort-card { margin-bottom: 32px; }

/* amenity cards */
.amenity-cards {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
@media(max-width:900px){
  .amenity-cards { grid-template-columns: 1fr; gap: 16px; }
  .a-card { padding: 32px 24px; border-radius: 20px; }
  .a-card__icon { margin-bottom: 16px; }
}

.a-card {
  padding: 36px; border-radius: 24px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease, border-color 0.3s ease;
}
.a-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  border-color: rgba(197,160,89,0.18);
}
.a-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(197,160,89,0.07);
  border: 1px solid rgba(197,160,89,0.14);
  margin: 0 auto 24px;
  color: var(--gold);
}
.a-card__title { font-size: 10px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; text-align: center; }
.a-card__list { list-style: none; }
.a-card__list li {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 10px 0; font-size: 12px; color: rgba(255,255,255,0.45);
}
.a-card__list li:last-child { border-bottom: none; }
.tag-yes { color: var(--gold); font-weight: 700; font-size: 13px; }
.tag-val { color: #fff; font-weight: 600; font-size: 11px; }

/* ======================================================
   GALÉRIA
====================================================== */
.gallery-section { background: linear-gradient(to bottom, var(--dark) 0%, var(--dark2) 10%, var(--dark2) 90%, var(--dark) 100%); }
.gallery-section h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900; text-transform: uppercase;
  letter-spacing: -0.03em; margin-bottom: 12px;
  line-height: 1.2;
}
.gallery-section h2 em { font-style: italic; }
.section-sub { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 36px; }

/* Filter tabs */
.gal-filter {
  display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap;
}
@media(max-width: 600px) {
  .gal-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    gap: 4px; /* Ešte menšia medzera */
    justify-content: center; /* Vycentrovanie, ak sa zmestia */
  }
  .gal-filter::-webkit-scrollbar { display: none; }
  .gf-tab { 
    flex-shrink: 0; 
    white-space: nowrap; 
    padding: 8px 10px; 
    font-size: 8px;
    letter-spacing: 0.05em;
  }
  .gf-tab svg { display: none; } /* Odstránenie ikoniek na mobile ušetrí veľa miesta */
  .gf-cnt { min-width: 16px; height: 16px; font-size: 7px; margin-left: 4px; }
}
.gf-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px; border-radius: 100px;
  font-size: 10px; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45); cursor: pointer;
  transition: all 0.3s ease;
}
.gf-tab svg { flex-shrink: 0; }
.gf-tab:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.18); }
.gf-tab.active {
  background: linear-gradient(135deg, #c5a059, #8e6d2f);
  border-color: transparent; color: #fff;
  box-shadow: 0 4px 18px rgba(197,160,89,0.3);
}
.gf-cnt {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; border-radius: 11px; padding: 0 6px;
  background: rgba(255,255,255,0.1); font-size: 9px;
}
.gf-tab.active .gf-cnt { background: rgba(255,255,255,0.25); }

/* Gallery grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
  grid-auto-flow: dense;
}
@media(max-width:1100px){ .gal-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 8px; } }
@media(max-width:768px){ .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 8px; } }
@media(max-width:480px){
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; gap: 6px; }
  .gal-item { border-radius: 12px; }
  .gal-item--wide { grid-column: span 2; }
  .gal-item::before { font-size: 8px; padding: 4px 8px; top: 8px; left: 8px; }
  .gal-overlay { padding: 12px; }
  .gal-overlay span { font-size: 9px; }
}

.gal-item {
  border-radius: 16px; overflow: hidden; position: relative;
  cursor: pointer;
}
.gal-item--wide { grid-column: span 2; }

.gal-item a { display: block; width: 100%; height: 100%; }
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
  display: flex; align-items: flex-end; padding: 18px 20px;
  opacity: 0; transition: opacity 0.35s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.2em; color: #fff;
}

/* Category badge on hover */
.gal-item::before {
  content: attr(data-cat-label);
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 8px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.7);
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gal-item:hover::before { opacity: 1; transform: translateY(0); }

/* Hidden when filtered */
.gal-hidden { display: none !important; }

@keyframes gal-item-in {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.gal-grid.filtering .gal-item:not(.gal-hidden) {
  animation: gal-item-in 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}
.gal-grid--entered .gal-item:not(.gal-hidden) {
  animation: gal-item-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 768px) {
  .gallery-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (min-width: 769px) {
  .gallery-more-wrap {
    display: none !important;
  }
}

/* ======================================================
   RECENZIE
====================================================== */
.reviews-section { background: var(--dark); }
.rev-head { margin-bottom: 40px; }
.rev-head h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
}
.rev-head h2 em { font-style: italic; }

.rev-track {
  display: flex; gap: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px; cursor: grab;
  overflow-y: visible;
}
.rev-track.grabbing { cursor: grabbing; }
.rev-track::-webkit-scrollbar { display: none; }
.rev-track { scrollbar-width: none; -ms-overflow-style: none; }

.rev-card {
  width: 390px;
  flex-shrink: 0;
  padding: 48px; border-radius: 28px;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease, border-color 0.3s ease;
}
.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.5);
  border-color: rgba(197,160,89,0.15);
}
@media(max-width:768px){ 
  .rev-track {
    gap: 40px !important; /* Väčšia medzera, aby ďalšia karta nevykúkala */
    scroll-snap-type: x mandatory !important;
    padding: 0 20px 24px 20px !important;
    margin-left: -20px !important;
    margin-right: -20px !important;
    width: calc(100% + 40px) !important;
  }
  .rev-card { 
    width: calc(100vw - 40px) !important; 
    min-width: calc(100vw - 40px) !important; 
    max-width: calc(100vw - 40px) !important; 
    padding: 32px 24px !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always !important;
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
  } 
}

.rev-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.rev-score { font-size: 10px; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.rev-stars { color: var(--gold); font-size: 14px; }
.rev-text { font-size: 14px; font-style: italic; color: rgba(255,255,255,0.55); line-height: 1.8; flex: 1; margin-bottom: 24px; }
.rev-author { font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.7); }
.rev-author span { color: rgba(255,255,255,0.35); }

.rev-controls { display: flex; align-items: center; justify-content: center; gap: 48px; margin-top: 32px; }
.rev-btn {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.rev-btn:hover { background: var(--gold); border-color: var(--gold); }

/* ======================================================
   HOST CARD
====================================================== */
.host-section { background: linear-gradient(to bottom, var(--dark) 0%, var(--dark2) 10%, var(--dark2) 90%, var(--dark) 100%); }
.host-section .section-label { margin-bottom: 24px; }

.host-card {
  display: flex; border-radius: 24px; overflow: hidden;
  max-width: 960px; margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  position: relative;
  will-change: transform;
}
/* shimmer */
.host-card::after {
  content: ''; position: absolute; top: 0; left: -150%; width: 80%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
  transform: skewX(-20deg); transition: left 0.8s ease-out; pointer-events: none;
}
.host-card-wrap:hover .host-card::after { left: 150%; }

.host-card__photo {
  flex: 0 0 34%; position: relative;
  background: #111; border-right: 1px solid rgba(255,255,255,0.05);
  min-height: 420px;
}
.host-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0; display: block;
}
.photo-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.3)),
              linear-gradient(to bottom, transparent 65%, rgba(0,0,0,0.5));
}

.host-card__body { flex: 1; padding: 44px; text-align: left; }

.host-card__head {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 28px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.host-label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 6px;
}
.host-name { font-size: 34px; font-weight: 900; letter-spacing: -0.02em; }
.host-rating {
  position: absolute; top: 24px; right: 24px; z-index: 10;
  text-align: center;
  background: linear-gradient(135deg, #c5a059, #8e6d2f);
  padding: 10px 16px; border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.host-score {
  display: block; font-size: 24px; font-weight: 900; line-height: 1;
  font-family: 'DM Serif Display', serif; color: #fff;
}
.host-score small { font-size: 12px; opacity: 0.7; }
.host-score-lbl { display: block; font-size: 8px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-top: 2px; opacity: 0.8; }

.host-card__text p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.host-card__text p:last-child { margin-bottom: 0; }

.host-card__foot {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.host-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.host-langs { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.host-langs strong { color: rgba(255,255,255,0.8); display: block; font-weight: 600; margin-bottom: 2px; }

@media(max-width: 760px) {
  .host-card { flex-direction: column; min-height: auto; border-radius: 20px; }
  .host-card__photo { flex: none; height: 220px; min-height: unset; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .host-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
  .host-card__body { padding: 24px 20px; }
  .host-card__head { flex-direction: column; gap: 12px; padding-bottom: 12px; margin-bottom: 12px; }
  .host-name { font-size: 26px !important; }
  .host-rating { top: 16px !important; right: 16px !important; padding: 6px 12px !important; }
  .host-score { font-size: 20px !important; }
  .host-card__text p { display: none !important; } /* Hide all text on mobile as requested */
  .host-card__foot { flex-direction: column; align-items: flex-start; margin-top: 16px; padding-top: 12px; gap: 16px; }
}

/* ======================================================
   OKOLIE / AROUND
====================================================== */
.around-section { background: var(--dark); }
.around-grid {
  display: grid; grid-template-columns: 5fr 7fr; gap: 60px; align-items: start;
}

@media(max-width:900px){
  .around-grid { grid-template-columns: 1fr; gap: 48px; }
  .around-info { padding: 32px 24px; }
  .logistics-grid { gap: 16px; }
}
@media(max-width: 500px) {
  .logistics-grid { grid-template-columns: 1fr; gap: 16px; }
}

.around-info { padding: 44px; border-radius: 28px; }
.around-info h3 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 700; margin-bottom: 16px; }
.logistics-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 18px;
  margin-top: 32px; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px;
}
.log-lbl { font-size: 9px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.log-val { font-size: 13px; font-weight: 700; color: #fff; }
.log-val.gold { color: var(--gold); }

.around-distances h3 {
  font-size: clamp(22px, 3vw, 36px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -0.02em; margin-bottom: 28px;
}
.around-distances h3 em { font-style: italic; }
.dist-list { list-style: none; }
.dist-item {
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05); padding: 14px 0;
  transition: padding-left 0.25s ease;
}
.dist-item:hover { padding-left: 4px; }
.dist-place {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4); transition: color 0.2s;
}
.dist-icon { color: var(--gold); flex-shrink: 0; opacity: 0.8; }
.dist-val { font-size: 14px; font-weight: 700; color: #fff; transition: color 0.2s; }
.dist-item:hover .dist-place { color: rgba(255,255,255,0.8); }
.dist-item:hover .dist-icon  { opacity: 1; }
.dist-item:hover .dist-val   { color: var(--gold); }

/* form validation */
.fg--error input, .fg--error textarea {
  border-color: rgba(239,68,68,0.6) !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1) !important;
}
.fg-error {
  font-size: 11px; font-weight: 600; color: rgba(239,100,100,0.95);
  margin-top: 6px; display: block; letter-spacing: 0.02em;
}
.form-success {
  text-align: center; padding: 32px;
  color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.7;
}
.form-success svg { display: block; margin: 0 auto 16px; color: #22c55e; }

/* ======================================================
   CONTACT
====================================================== */
.contact-section { background: linear-gradient(to bottom, var(--dark) 0%, var(--dark2) 10%, var(--dark2) 90%, var(--dark) 100%); }

.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}

@media(max-width:900px){
  .contact-split { grid-template-columns: 1fr; gap: 48px; }
  .cal-box { padding: 32px 24px; }
  .cs-calendar { position: static; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-info-bar { flex-direction: column; gap: 24px; }
  .cib-sep { width: 100%; height: 1px; }
}

.cs-calendar { position: sticky; top: 100px; }
.cal-box { padding: 40px; border-radius: 28px; }
.cal-box h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 14px;
}
.cal-box h2 em { font-style: italic; }
.cal-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 24px; }

/* Calendar theming */
#availability-calendar-wrap .flatpickr-calendar {
  background: rgba(255,255,255,0.03) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3) !important;
  border: 1px solid rgba(197,160,89,0.15) !important;
  border-radius: 16px !important; padding: 12px !important;
  width: 100% !important; max-width: 100% !important;
}
#availability-calendar-wrap .flatpickr-months,
#availability-calendar-wrap .flatpickr-month,
#availability-calendar-wrap .flatpickr-weekdays,
#availability-calendar-wrap .flatpickr-weekdaycontainer,
#availability-calendar-wrap .flatpickr-innerContainer,
#availability-calendar-wrap .flatpickr-rContainer,
#availability-calendar-wrap .flatpickr-days,
#availability-calendar-wrap .dayContainer {
  background: transparent !important; border: none !important;
}
#availability-calendar-wrap .flatpickr-months { margin-bottom: 12px; padding: 4px 0; }
#availability-calendar-wrap .flatpickr-months .flatpickr-month,
#availability-calendar-wrap .flatpickr-months .flatpickr-prev-month,
#availability-calendar-wrap .flatpickr-months .flatpickr-next-month {
  color: var(--gold) !important; fill: var(--gold) !important;
}
#availability-calendar-wrap .flatpickr-current-month .cur-month,
#availability-calendar-wrap .flatpickr-current-month .numInputWrapper {
  color: var(--gold) !important; font-weight: 700;
}
#availability-calendar-wrap .flatpickr-current-month select { pointer-events: none; }
#availability-calendar-wrap .flatpickr-current-month .numInputWrapper span { display: none !important; }
#availability-calendar-wrap .flatpickr-current-month .numInputWrapper input { pointer-events: none; }
#availability-calendar-wrap span.flatpickr-weekday {
  color: rgba(197,160,89,0.7) !important; font-size: 10px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase;
}
#availability-calendar-wrap .flatpickr-day {
  color: rgba(255,255,255,0.8) !important; border-radius: 10px !important;
  border: 1px solid transparent !important; transition: all 0.2s ease;
}
#availability-calendar-wrap .flatpickr-day:hover {
  background: rgba(197,160,89,0.12) !important; border-color: rgba(197,160,89,0.4) !important; color: #fff !important;
}
#availability-calendar-wrap .flatpickr-day.selected,
#availability-calendar-wrap .flatpickr-day.startRange,
#availability-calendar-wrap .flatpickr-day.endRange {
  background: linear-gradient(135deg,#c5a059,#8e6d2f) !important;
  border-color: var(--gold) !important; color: #fff !important;
  box-shadow: 0 4px 12px rgba(197,160,89,0.4) !important;
}
#availability-calendar-wrap .flatpickr-day.inRange {
  background: rgba(197,160,89,0.15) !important; box-shadow: none !important; border-radius: 0 !important;
}
#availability-calendar-wrap .flatpickr-day.flatpickr-disabled,
#availability-calendar-wrap .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(255,255,255,0.12) !important; background: rgba(255,60,60,0.06) !important;
  cursor: not-allowed !important; border-color: rgba(255,60,60,0.1) !important;
}
#availability-calendar-wrap .flatpickr-day.today {
  border-color: var(--gold) !important; background: rgba(197,160,89,0.08) !important;
}
#availability-calendar-wrap .flatpickr-day.prevMonthDay,
#availability-calendar-wrap .flatpickr-day.nextMonthDay { color: rgba(255,255,255,0.15) !important; }

.cal-legend { display: flex; gap: 22px; margin-top: 20px; flex-wrap: wrap; }
.cleg-item { display: flex; align-items: center; gap: 8px; font-size: 11px; color: rgba(255,255,255,0.45); }
.cleg-dot { width: 12px; height: 12px; border-radius: 4px; display: inline-block; }
.cleg-dot--free { background: rgba(197,160,89,0.2); border: 1px solid var(--gold); }
.cleg-dot--booked { background: rgba(255,60,60,0.1); border: 1px solid rgba(255,60,60,0.25); }

/* contact form */
.cs-form h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 900; letter-spacing: -0.03em; line-height: 1.2; margin-bottom: 12px; }
.cs-form h2 em { font-style: italic; }

.contact-form { padding: 40px; border-radius: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg--full { grid-column: 1 / -1; margin-bottom: 20px; }
.fg label { font-size: 9px; font-weight: 900; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.fg input, .fg textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 18px; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 14px; outline: none;
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.fg input:hover, .fg textarea:hover { background: rgba(255,255,255,0.06); }
.fg input:focus, .fg textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}
.fg textarea { resize: vertical; min-height: 120px; }
.fg input[type="number"]::-webkit-inner-spin-button,
.fg input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }
.fg input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.38); font-weight: 300; }

/* contact info bar */
.contact-info-bar {
  display: flex; gap: 32px; margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 32px;
  flex-wrap: wrap;
}
.cib-item { flex: 1; min-width: 140px; }
.cib-lbl { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 8px; }
.cib-val { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); text-decoration: none; display: block; }
.cib-val:hover { color: var(--gold); }
.cib-sep { width: 1px; background: rgba(255,255,255,0.07); align-self: stretch; }

/* ======================================================
   FOOTER
====================================================== */
#nw-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 48px;
}
.foot-inner {
  max-width: var(--cmax); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-brand p { font-size: 12px; color: rgba(255,255,255,0.3); font-style: italic; }
.foot-copy { font-size: 9px; letter-spacing: 0.5em; text-transform: uppercase; color: rgba(255,255,255,0.2); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.foot-links a:hover { color: var(--gold); }
@media(max-width:600px){ #nw-footer { padding: 32px 20px; } .foot-inner { flex-direction: column; text-align: center; } }

/* ======================================================
   HOST PHOTO FALLBACK
====================================================== */
.host-card__photo.no-photo {
  background: linear-gradient(135deg, #1a1208, #111);
  display: flex; align-items: center; justify-content: center;
}
.host-card__photo.no-photo::after {
  content: 'AT';
  font-size: 64px; font-weight: 900;
  font-family: 'DM Serif Display', serif;
  color: var(--gold); opacity: 0.35;
  position: relative; z-index: 1;
}

/* ======================================================
   SECTION DIVIDERS
====================================================== */
.about-section::before,
.gallery-section::before,
.host-section::before,
.contact-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent           0%,
    rgba(197,160,89,0.06) 20%,
    rgba(197,160,89,0.22) 50%,
    rgba(197,160,89,0.06) 80%,
    transparent           100%
  );
  pointer-events: none;
  z-index: 2;
}
.about-section::after,
.gallery-section::after,
.host-section::after,
.contact-section::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 100%;
  height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 70% 100% at 50% 0%, rgba(197,160,89,0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ======================================================
   LIGHTBOX
====================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200000;
  background: rgba(0,0,0,0.96);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lb-content {
  display: flex; flex-direction: column; align-items: center;
  max-width: 92vw; max-height: 92vh;
  position: relative;
}
.lb-content img {
  max-width: 92vw; max-height: 86vh;
  object-fit: contain; border-radius: 10px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transition: opacity 0.25s ease;
}
.lb-content img.loading { opacity: 0.3; }
.lb-caption {
  margin-top: 14px;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.25em; color: rgba(255,255,255,0.4);
}
.lb-close {
  position: fixed; top: 20px; right: 28px;
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 38px; line-height: 1; cursor: pointer; z-index: 200001;
  transition: color 0.2s; padding: 4px 8px;
}
.lb-close:hover { color: var(--gold); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 20px; cursor: pointer; z-index: 200001;
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; padding: 0;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: var(--gold); border-color: var(--gold); }
@media(max-width:600px){
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 16px; }
}

/* ======================================================
   GOOGLE MAPS SECTION
====================================================== */
.map-wrap {
  margin-top: 56px;
}

.map-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.map-header__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.map-title em { font-style: italic; }
.map-open-btn {
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(197,160,89,0.07) inset;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.map-frame:hover {
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(197,160,89,0.18) inset;
  border-color: rgba(197,160,89,0.16);
}

/* subtle gold top edge shimmer */
.map-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197,160,89,0.35) 50%, transparent);
  z-index: 2;
  pointer-events: none;
}

.map-frame iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 20px;
  filter: grayscale(0.2) sepia(0.1) contrast(1.15) brightness(0.8);
  transition: filter 0.5s ease;
}
.map-frame:hover iframe {
  filter: grayscale(0) sepia(0) contrast(1.05) brightness(0.95);
}

.map-overlay-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,160,89,0.2) 0%, rgba(5,5,5,0.6) 100%);
  pointer-events: none;
  border-radius: 20px;
  mix-blend-mode: overlay;
  transition: opacity 0.5s ease;
}
.map-frame:hover .map-overlay-tint {
  opacity: 0.5;
}

/* floating location badge */
.map-pin-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(197,160,89,0.3);
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  pointer-events: none;
  animation: badge-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}
@keyframes badge-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.map-pin-badge svg { color: var(--gold); flex-shrink: 0; }

@media(max-width: 700px) {
  .map-header { align-items: flex-start; flex-direction: column; gap: 16px; }
  .map-open-btn { align-self: flex-start; }
  .map-frame iframe { height: 300px !important; }
}

/* ======================================================
   ÚPRAVA PRÁZDNYCH BOXOV (2 STĹPCE NA MOBILE)
====================================================== */
@media(max-width: 768px) {
  .about-section {
    padding-bottom: 20px;
  }

  .about-top {
    margin-bottom: 24px;
  }

  .amenities-section {
    padding-top: 20px;
  }

  /* 1. Boxy v sekcii O apartmáne (Ski-in, Krb...) */
  .apt-highlights { 
    grid-template-columns: repeat(2, 1fr) !important; /* Držíme 2 stĺpce */
    gap: 10px; 
  }
  .apt-hl-item { 
    flex-direction: column; /* Ikonka nad textom šetrí horizontálne miesto */
    text-align: center;
    padding: 16px 12px; 
  }
  .apt-hl-icon { 
    margin: 0 auto 8px auto; /* Vycentrovanie ikonky */
  }

  /* 2. Check-in / Check-out v sekcii Okolie */
  .logistics-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 16px; 
  }

  /* 3. Štatistiky v Hero sekcii (Plocha, Nadmorská výška...) */
  .hero__stats {
    gap: 20px 0;
  }
  .hstat {
    flex: 1 1 40%; /* 2 stĺpce pre štatistiky */
    padding: 0 10px;
  }
  .hstat__div { 
    display: none; /* Skryjeme zvislé čiary, na mobile zavadzajú */
  }
}

@media(max-width: 480px) {
  /* Pre ultra-úzke displeje len zmenšíme písmo, ale stále držíme 2 stĺpce */
  .apt-hl-text strong { font-size: 11px; }
  .apt-hl-text span { font-size: 9px; line-height: 1.3; }
  .log-val { font-size: 12px; }
}

/* ======================================================
   KARTY VYBAVENIA - VEDĽA SEBA NA MOBILE (SWIPE CAROUSEL)
====================================================== */
@media(max-width: 900px) {
  .amenity-cards {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    
    /* Roztiahnutie scrollovania až po úplný okraj displeja */
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 24px; /* Miesto pre tieň kariet */
    
    /* Skrytie posuvníka (scrollbaru) pre čistý vzhľad */
    scrollbar-width: none; 
  }
  .amenity-cards::-webkit-scrollbar {
    display: none; 
  }
  
  .a-card {
    /* Karta zaberie 85% šírky displeja, ďalšia bude jemne vykúkať */
    flex: 0 0 85%; 
    max-width: 320px;
    scroll-snap-align: center;
    
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .a-card__icon {
    width: 48px; height: 48px;
    margin: 0 auto 16px auto;
  }
  .a-card__icon svg { width: 24px; height: 24px; }
  
  .a-card__title { text-align: center; font-size: 11px; }
  
  .a-card__list { width: 100%; margin-top: auto; }
  .a-card__list li { padding: 8px 0; font-size: 12px; }
}

@media (max-width: 600px) {
  /* 1. Zmenšíme padding hero sekcie, aby sme videli viac z pozadia */
  .hero {
    padding: 100px 20px 60px;
  }

  /* 2. Upravíme veľkosť hlavného nadpisu, aby mal lepšie proporcie */
  .hero__h1 {
    font-size: 48px; /* Pôvodne clamp bol agresívnejší */
    line-height: 1.1;
    margin-bottom: 16px;
  }

  /* 3. Upravíme štatistiky (40m2, 565m...) - pridáme im vertikálny priestor */
  .hero__stats {
    padding-top: 24px;
    gap: 12px 0;
  }
  
  .hstat__val {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  /* Hero Refinement */
  .hero {
    padding: 60px 20px 60px !important;
    text-align: center !important;
  }
  .hero__h1 {
    font-size: 52px !important;
    line-height: 1.05 !important;
    margin-bottom: 20px !important;
    letter-spacing: -0.04em !important;
  }
  .hero__sub {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.85) !important;
    max-width: 34ch !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .hero__stats {
    padding-top: 20px !important;
    gap: 16px 0 !important;
  }
  .hstat__val {
    font-size: 20px !important;
    color: #f3e2bc !important;
  }

  /* About Visual - Premium Frame */
  .about-visual {
    max-width: 320px !important;
    margin: 0 auto !important;
  }
  .about-img-frame.about-video-frame {
    aspect-ratio: 4 / 5 !important;
    border-radius: 28px !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.6) !important;
  }

  /* About Text - Elegant Spacing */
  .about-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .about-copy h2 {
    font-size: 36px !important;
    line-height: 1.1 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
  }
  .about-copy .body-text {
    font-size: 15px !important;
    line-height: 1.75 !important;
    text-align: justify !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
  }

  /* Floating Elements Adjustment */
  .floating-badge {
    right: -10px !important;
    bottom: 20px !important;
    transform: scale(0.9) !important;
  }
  .floating-tag {
    left: -10px !important;
    top: 20px !important;
    transform: scale(0.9) !important;
  }

  /* Highlights Grid */
  .apt-highlights {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    margin-top: 32px !important;
  }
  .apt-hl-item {
    background: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-radius: 20px !important;
    padding: 20px 12px !important;
  }
}

@media (max-width: 600px) {
  /* 1. Comfort Card - celkové zjemnenie vnútorných okrajov */
  .comfort-body {
    padding: 32px 20px; /* Menej miesta po stranách pre širší text */
  }

  .comfort-body__h3 {
    font-size: 28px; /* Kompaktnejší nadpis */
    margin-bottom: 12px;
  }

  /* 2. Zoznam pod hlavným textom (Terasa, Krb...) */
  .comfort-list {
    padding: 0 20px 32px; /* Padding presunutý hlavne nadol */
  }

  .comfort-list li {
    padding: 10px 0;
    font-size: 10px; /* Menšie, elegantnejšie písmo */
    gap: 12px;
  }

  .comfort-list li::before {
    width: 20px; /* Kratšia dizajnová čiarka pred položkou */
  }

  /* 3. Vylepšenie scrollovacích kariet (Kuchyňa, Zábava, Služby) */
  .a-card {
    padding: 28px 18px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); /* Výraznejší tieň pre "hĺbku" pri swipeovaní */
    border-color: rgba(255,255,255,0.1);
  }

  .a-card__icon {
    width: 56px; 
    height: 56px;
    margin-bottom: 20px;
  }

  .a-card__list li {
    padding: 8px 0;
    font-size: 11px;
  }
}

@media (max-width: 600px) {
  /* Gallery Refinement */
  .gallery-section h2 {
    font-size: 38px !important;
    margin-bottom: 12px !important;
  }
  .gal-filter {
    gap: 10px !important;
    margin-bottom: 24px !important;
    padding: 0 4px 12px !important;
  }
  .gf-tab {
    padding: 10px 18px !important;
    font-size: 9px !important;
    background: rgba(255,255,255,0.03) !important;
    border-radius: 100px !important;
  }

  /* Host Section - Premium Card */
  .host-card {
    border-radius: 32px !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6) !important;
  }
  .host-name {
    font-size: 32px !important;
    margin-bottom: 8px !important;
  }
  .host-card__body {
    padding: 32px 24px !important;
  }

  /* Contact & Calendar */
  .cal-box, .contact-form {
    padding: 32px 24px !important;
    border-radius: 32px !important;
    background: rgba(255,255,255,0.02) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
  }
  .contact-split {
    gap: 40px !important;
  }
  .contact-section h2 {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }
}

@media (max-width: 600px) {
  .gallery-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-section h2 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 6px;
  }

  .gallery-section .section-sub {
    font-size: 12px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.50);
  }

  .gal-filter {
    gap: 8px;
    margin-bottom: 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .gal-filter::-webkit-scrollbar {
    display: none;
  }

  .gf-tab {
    flex: 0 0 auto;
    padding: 8px 14px;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .gf-cnt {
    min-width: 18px;
    height: 18px;
    font-size: 8px;
    padding: 0 5px;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 112px;
    gap: 6px;
  }

  .gal-item {
    border-radius: 10px;
  }

  .gal-item--wide {
    grid-column: span 2;
  }

  .gal-overlay {
    padding: 10px;
  }

  .gal-overlay span {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .gal-item::before {
    top: 8px;
    left: 8px;
    padding: 4px 8px;
    font-size: 7px;
  }
}

@media (max-width: 600px) {
  /* 1. Sekcia Recenzie - hlavička a medzery */
  .rev-head h2 {
    font-size: 32px;
    line-height: 1.1;
  }

  /* 2. Karta recenzie - zjemnenie textu a rozmerov */
  .rev-card {
    min-width: 280px; /* O niečo užšie karty pre lepšiu viditeľnosť okraja ďalšej karty */
    padding: 24px;
    border-radius: 20px;
  }

  .rev-text {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* 3. Ovládacie prvky recenzií (šípky) */
  .rev-controls {
    gap: 32px; /* Šípky bližšie k sebe */
  }

  .rev-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  /* 4. Sekcia Hostiteľ - úprava karty */
  .host-name {
    font-size: 28px; /* Menšie meno, aby sa nezalamovalo na 3 riadky */
    margin-top: 4px;
  }

  .host-label {
    font-size: 9px;
    letter-spacing: 0.25em;
  }

  /* 5. Badge s hodnotením u hostiteľa */
  .host-rating {
    padding: 8px 14px;
    border-radius: 12px;
  }

  .host-score {
    font-size: 24px;
  }

  /* 6. Tlačidlá "Zavolať" a "Rezervovať" pod sebou */
  .host-actions {
    display: flex;
    flex-direction: column; /* Tlačidlá pod sebou pre pohodlnejšie klikanie palcom */
    width: 100%;
    gap: 10px;
  }

  .host-actions .btn {
    width: 100%; /* Plná šírka tlačidiel */
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 600px) {
  /* 1. Sekcia Okolie - úprava zoznamu vzdialeností */
  .around-distances h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .dist-item {
    padding: 12px 0; /* Kompaktnejšie riadky */
  }

  .dist-place {
    font-size: 10px; /* Menšie písmo pre miesta */
    gap: 8px;
  }

  .dist-val {
    font-size: 13px; /* Výraznejšie hodnoty vzdialenosti */
  }

  /* 2. Mapa - kompaktná hlavička */
  .map-header {
    gap: 12px;
    margin-bottom: 16px;
  }

  .map-title {
    font-size: 24px;
  }

  .map-open-btn {
    width: 100%; /* Tlačidlo na celú šírku pre ľahšie kliknutie */
    justify-content: center;
    padding: 12px;
  }

  /* 3. Kalendár - zmenšenie paddingu boxu */
  .cal-box {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .cal-box h2 {
    font-size: 28px;
  }

  .cal-desc {
    font-size: 12px;
    margin-bottom: 16px;
  }

  /* 4. Rezervačný formulár - úprava polí */
  .contact-form {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .fg label {
    font-size: 8px; /* Extra malé labely pre moderný vzhľad */
    margin-bottom: 4px;
  }

  .fg input, .fg textarea {
    padding: 12px 14px;
    font-size: 13px;
  }

  /* 5. Kontaktný panel pod formulárom (Telefón, Email) */
  .contact-info-bar {
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
  }

  .cib-item {
    min-width: 100%; /* Každý kontakt na vlastnom riadku */
  }

  .cib-lbl {
    margin-bottom: 4px;
  }

  .cib-val {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  /* 1. Logo v hlavičke - lepšie vycentrovanie a veľkosť */
  #nw-header {
    padding: 12px 20px; /* Ešte kompaktnejšia hlavička */
  }

  .hdr-logo img {
    height: 34px; /* Menšie logo pre viac miesta */
  }

  /* 2. Mobilné menu (Drawer) - lepšie rozostupy a animácia */
  .mobile-drawer nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
  }

  .mob-link {
    font-size: 18px; /* Elegantnejšie písmo pre navigáciu */
    letter-spacing: 0.15em;
    padding: 10px;
  }

  .mob-cta {
    background: linear-gradient(135deg, #c5a059, #8e6d2f);
    color: #fff !important;
    padding: 14px 40px;
    border-radius: 100px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(197,160,89,0.3);
  }

  /* 3. Pätička (Footer) - vertikálne zarovnanie */
  #nw-footer {
    padding: 48px 20px 32px;
  }

  .foot-inner {
    gap: 32px; /* Väčšie medzery medzi blokmi v pätičke */
  }

  .foot-brand {
    flex-direction: column;
    gap: 12px;
  }

  .foot-brand img {
    height: 30px;
  }

  .foot-brand p {
    font-size: 11px;
    max-width: 200px;
    margin: 0 auto;
  }

  /* 4. Odkazy a copyright pod sebou */
  .foot-links {
    flex-direction: column;
    gap: 14px;
  }

  .foot-links a {
    font-size: 10px;
    opacity: 0.5;
  }

  .foot-copy {
    font-size: 8px;
    letter-spacing: 0.3em;
    margin-top: 10px;
    order: 3; /* Copyright bude úplne na spodku */
  }
}

@media (max-width: 600px) {
  /* 1. Lightbox - úprava rozloženia pre palce */
  .lb-content {
    max-width: 100vw; /* Využitie celej šírky */
  }

  .lb-content img {
    border-radius: 0; /* Fotky na celú šírku bez zaoblenia pôsobia väčšie */
    max-height: 70vh;
  }

  .lb-caption {
    font-size: 9px;
    padding: 0 20px;
    text-align: center;
    line-height: 1.4;
  }

  /* 2. Ovládacie tlačidlá v Lightboxe - posun mimo stred fotky */
  .lb-prev, .lb-next {
    top: auto;
    bottom: 40px; /* Presun šípok nadol pre ľahší dosah palcom */
    transform: none;
    background: rgba(255,255,255,0.1);
  }

  .lb-prev { left: 30%; transform: translateX(-50%); }
  .lb-next { right: 30%; transform: translateX(50%); }

  .lb-close {
    top: 10px;
    right: 15px;
    font-size: 32px;
  }

  /* 3. Ambientné orby - obmedzenie, aby nespôsobovali lagy */
  .amb-orb--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    opacity: 0.05; /* Ešte jemnejšie na mobile */
  }

  .amb-orb--3 {
    width: 200px;
    height: 200px;
    opacity: 0.04;
  }

  /* 4. Reveal animácie - zmenšenie dráhy pohybu */
  /* Na mobile stačí jemnejší posun, aby to pôsobilo plynulejšie */
  .nw-reveal {
    transform: translateY(10px);
  }
}

@media (max-width: 600px) {
  /* 1. Prevencia automatického priblíženia (zoomu) na iPhone */
  /* iOS zoomuje obrazovku, ak je písmo v inpute menšie ako 16px */
  .fg input, 
  .fg textarea, 
  #dates {
    font-size: 16px !important;
  }

  /* 2. Optimalizácia dotykových plôch (Tap Targets) */
  /* Tlačidlá musia byť dostatočne veľké na pohodlné stlačenie */
  .btn, 
  .rev-btn, 
  .gf-tab, 
  .hdr-burger,
  .lb-close {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* 3. Úprava správy po úspešnom odoslaní formulára */
  .form-success {
    padding: 40px 10px;
    text-align: center;
  }

  .form-success svg {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
  }

  .form-success strong {
    font-size: 22px !important;
    margin-bottom: 12px;
  }

  /* 4. Odstránenie scroll cue (animovanej myšky) v Hero */
  /* Na mobile často prekrýva dôležité štatistiky a pôsobí rušivo */
  .scroll-cue {
    display: none;
  }

  /* 5. Jemnejšie medzery v sekcii Okolie (Around) */
  .around-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

@media (max-width: 600px) {
  /* 1. Hero štatistiky - zabalíme ich do jemného skleneného boxu */
  .hero__stats {
    background: rgba(255, 255, 255, 0.03); /* Veľmi jemné pozadie */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Decentné ohraničenie */
    border-radius: 24px;
    padding: 24px 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Držíme 2 stĺpce z predošlých úprav */
    gap: 20px 0;
  }

  /* 2. Zmenšenie vertikálneho paddingu sekcií pre lepší "flow" stránky */
  /* Stránka bude pôsobiť svižnejšie pri skrolovaní */
  .section {
    padding: 56px 0;
  }

  /* 3. Zjednotenie nadpisov H2 naprieč celým webom na mobiloch */
  /* Zabezpečí konzistentný vizuálny štýl */
  h2 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
  }

  /* 4. Úprava popisu v Hero sekcii - mierne rozšírenie textu */
  .hero__desc {
    max-width: 100%;
    font-size: 14px;
    margin-bottom: 32px;
    padding: 0 10px;
  }
}

@media (max-width: 600px) {
  /* 1. Blízke vzdialenosti - zmeníme položky na samostatné karty */
  .dist-item {
    background: rgba(255, 255, 255, 0.02); /* Jemné podfarbenie riadku */
    margin-bottom: 8px; /* Medzera medzi riadkami */
    padding: 16px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dist-item:last-child {
    margin-bottom: 0;
  }

  .dist-place {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9) !important; /* Lepšia čitateľnosť textu */
    letter-spacing: 0.05em;
  }

  .dist-val {
    font-size: 15px;
    font-family: 'DM Serif Display', serif; /* Hodia sa k prémiovému štýlu */
    color: var(--gold);
  }

  /* 2. Kalendár - centrovanie a mierka */
  #availability-calendar-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden; /* Zabráni pretekaniu na veľmi úzkych mobiloch */
  }

  #availability-calendar-wrap .flatpickr-calendar {
    transform: scale(0.92); /* Mierne zmenšenie, aby kalendár dýchal */
    transform-origin: top center;
    margin-bottom: -20px; /* Kompenzácia po zmenšení mierky */
  }

  /* 3. Legenda kalendára - vycentrovanie na stred */
  .cal-legend {
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  /* 4. Rezervačný formulár - vylepšenie inputov */
  .fg input::placeholder {
    font-size: 12px;
    opacity: 0.5;
  }
}

@media (max-width: 600px) {
  /* 1. Zlepšenie riadkovania v dlhších textoch */
  /* Vyššie riadkovanie (line-height) zabraňuje únave očí pri čítaní na mobile */
  .body-text, 
  .host-card__text p, 
  .rev-text {
    line-height: 1.8 !important;
    letter-spacing: 0.01em;
  }

  /* 2. Aktívny stav pre tlačidlá (Visual Feedback) */
  /* Keďže na mobile nie je "hover", pridáme efekt pri zatlačení (tapnutí) */
  .btn:active, 
  .hdr-cta:active, 
  .rev-btn:active {
    transform: scale(0.96) !important;
    filter: brightness(1.2);
    transition: transform 0.1s ease;
  }

  /* 3. Úprava Marquee Stripu (bežiaci text) */
  /* Na mobile mu pridáme viac priestoru, aby nepôsobil natlačene medzi sekciami */
  .strip {
    padding: 18px 0;
    margin: 10px 0;
  }

  .strip__inner span {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  /* 4. Zvýraznenie vizuálnych predelov sekcií */
  /* Posilníme efekt žiary (glow), ktorý oddeľuje jednotlivé časti webu */
  .about-section::after,
  .gallery-section::after,
  .host-section::after,
  .contact-section::after {
    height: 180px; /* Kratšia, ale intenzívnejšia žiara na mobile */
    background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(197,160,89,0.06) 0%, transparent 100%);
  }
}

@media (max-width: 600px) {
  /* 1. Zvýraznenie labelov vo formulári */
  /* Pôvodná šedá bola príliš jemná, pridáme kontrast pre lepšiu prístupnosť */
  .fg label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 700;
    margin-left: 4px;
    letter-spacing: 0.1em;
  }

  /* 2. Decentné horizontálne oddelenie sekcií */
  /* Pridáme veľmi tenkú "zlatú" líniu nad názov každej sekcie */
  .section-label {
    position: relative;
    padding-top: 12px;
    display: inline-block;
  }

  .section-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
  }

  /* 3. Optimalizácia zobrazenia tlačidiel v pätičke */
  /* Ochrana údajov a podmienky pod sebou s väčším odstupom */
  .foot-links {
    margin-top: 20px;
    gap: 20px;
  }

  .foot-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 4px;
  }

  /* 4. Úprava inputu pre výber termínu (kalendár) */
  /* Aby na mobile nevyzeral ako pasívne pole, pridáme mu vizuálny "klik" */
  #dates {
    border-color: rgba(197, 160, 89, 0.3) !important;
    background: rgba(197, 160, 89, 0.05) !important;
    color: var(--gold-light);
  }
}

@media (max-width: 600px) {
  /* 1. Úprava hlavného nadpisu v Hero */
  /* Slovo MOUNTAIN na videu pôsobí až príliš dominantne */
  .hero__h1 {
    font-size: 42px !important; /* Mierne zmenšenie pre lepšiu eleganciu */
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__h1 em {
    font-size: 32px; /* Pomer medzi NISE a MOUNTAIN bude vyváženejší */
    margin-bottom: -5px;
  }

  /* 2. Fixná rezervačná lišta na spodku obrazovky */
  /* Toto tlačidlo sa zobrazí len na mobile a po odskrolovaní z úvodu */
  .mobile-cta-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    justify-content: center;
    pointer-events: none; /* Aby nebránila skrolovaniu, kým je neviditeľná */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  /* Trieda, ktorú pridáme pomocou JS, alebo ju môžeme nechať viditeľnú stále */
  .mobile-cta-fixed.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
  }

  .mobile-cta-fixed .btn {
    width: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(197, 160, 89, 0.2);
    padding: 16px;
    font-size: 12px;
  }

  /* 3. Odstránenie "duchov" v navigácii */
  /* Zabezpečíme, aby pozadie hlavičky pri skrolovaní bolo na mobile o niečo tmavšie */
  #nw-header.scrolled {
    background: rgba(5, 5, 5, 0.95) !important;
  }
}

@media (max-width: 600px) {
  /* 1. Vycentrovanie celej kontaktnej sekcie a jej textov */
  .contact-split {
    display: flex;
    flex-direction: column;
    align-items: center; /* Vycentruje bloky v kontajneri */
    text-align: center;   /* Vycentruje nadpisy a popisy */
  }

  .cs-calendar, .cs-form {
    width: 100%;
    max-width: 480px; /* Zabezpečí, že bloky nebudú na širších mobiloch príliš široké */
  }

  /* 2. Vycentrovanie labelov (nadpisov sekcií) */
  .contact-split .section-label {
    margin-left: auto;
    margin-right: auto;
  }

  /* 3. Vycentrovanie popiskov vo formulári (labels) */
  .fg label {
    text-align: center;
    width: 100%;
    margin-left: 0 !important;
  }

  /* 4. Úprava kalendára pre lepšie centrovanie */
  #availability-calendar-wrap {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  /* 5. Legenda pod kalendárom na stred */
  .cal-legend {
    justify-content: center;
    width: 100%;
  }

  /* 6. Zarovnanie textu v tlačidle formulára */
  .contact-form .btn {
    margin: 0 auto;
    justify-content: center;
  }
}

/* 1. Globálne skrytie roka v celom kalendári */
.flatpickr-calendar .numInputWrapper {
  display: none !important;
}

/* 2. Vycentrovanie mesiaca v hlavičke kalendára */
.flatpickr-current-month {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  left: 0 !important;
  padding: 0 !important;
}

/* 3. Zabezpečenie, aby názov mesiaca nebol posunutý do strany */
.flatpickr-current-month .flatpickr-month {
  position: relative !important;
  display: inline-block !important;
}

@media (max-width: 600px) {
  /* 1. Odstránenie deliacej čiary a zjednotenie pozadia */
  .strip {
    border-bottom: none !important; /* Odstráni tú rušivú linku pod Wi-Fi */
    background: var(--dark2) !important; /* Force farby, ktorá začína ďalšiu sekciu */
    margin-bottom: 0 !important;
    padding: 10px 0 !important;
  }

  /* 2. Prisunutie sekcie "O apartmáne" bližšie k pásu */
  .about-section {
    padding-top: 20px !important; /* Výrazne zmenšíme čiernu dieru nad nadpisom */
    margin-top: 0 !important;
  }

  /* 3. Stabilizácia zlatej linky nad nadpisom */
  /* Aby nevisela vo vzduchu, upravíme jej pozíciu */
  .section-label {
    padding-top: 14px !important;
    margin-top: 0 !important;
  }

  .section-label::before {
    top: 0;
    width: 40px; /* Trochu dlhšia linka pre čistejší predel */
    opacity: 0.8;
  }

  /* 4. Odstránenie "glow" efektu, ktorý na mobile vytváral šedý fľak */
  .about-section::before, 
  .about-section::after {
    display: none !important; 
  }
}

@media (max-width: 768px) {
  .around-section .around-info {
    text-align: center !important;
    padding: 0 10px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    margin-bottom: 60px !important;
  }

  .around-section .around-info h3 {
    font-family: "DM Serif Display", serif !important;
    font-size: 38px !important;
    line-height: 1.1 !important;
    color: #f3e2bc !important;
    margin-bottom: 24px !important;
    text-align: center !important;
  }

  .around-section .around-info .body-text {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: rgba(255,255,255,0.65) !important;
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
    margin-bottom: 40px !important;
    max-width: 100% !important;
  }

  .around-section .logistics-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 16px !important;
    padding-top: 32px !important;
    border-top: 1px solid rgba(197,160,89,0.2) !important;
    margin-top: 0 !important;
  }

  .around-section .log-item {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .around-section .log-lbl {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase !important;
    color: rgba(197,160,89,0.6) !important;
    margin-bottom: 6px !important;
  }

  .around-section .log-val {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #fff !important;
  }
}

/* ======================================================
   FINAL PREMIUM MOBILE OVERRIDES (PRIORITY)
====================================================== */
@media (max-width: 768px) {
  .amenities-section .comfort-card {
    display: block !important;
    background: rgba(255,255,255,0.02) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 32px !important;
    padding: 16px !important;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4) !important;
    overflow: visible !important;
    position: relative !important;
    margin-bottom: 40px !important;
  }

  .amenities-section .comfort-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0; left: 15%; right: 15%; height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(197,160,89,0.4), transparent) !important;
    display: block !important;
  }

  .amenities-section .comfort-img {
    height: 220px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    margin-bottom: 24px !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.25) !important;
  }

  .amenities-section .comfort-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transform: none !important;
  }

  .amenities-section .comfort-body {
    padding: 0 10px 20px !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .amenities-section .comfort-body h3,
  .amenities-section .comfort-body__h3 {
    font-family: "DM Serif Display", serif !important;
    font-size: 32px !important;
    line-height: 1.05 !important;
    color: #f3e2bc !important;
    margin: 0 auto 14px !important;
    text-align: center !important;
  }

  .amenities-section .comfort-body .body-text {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,0.6) !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: justify !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
  }

  .amenities-section .comfort-list {
    list-style: none !important;
    padding: 20px 10px 10px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    margin: 0 !important;
  }

  .amenities-section .comfort-list li {
    font-size: 9px !important;
    font-weight: 800 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.7) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    border: none !important;
    padding: 0 !important;
  }

  .amenities-section .comfort-list li::before {
    content: "✦" !important;
    display: inline-block !important;
    color: var(--gold) !important;
    font-size: 10px !important;
  }

  .amenities-section .comfort-list li:last-child {
    border-bottom: none !important;
  }

  /* Contact Info Bar - Vertical Typographic Redesign */
  .contact-info-bar {
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
    margin-top: 60px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    text-align: center !important;
  }
  .cib-sep { display: none !important; }

  .cib-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: none !important;
    padding: 0 !important;
  }

  .cib-lbl {
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    margin-bottom: 8px !important;
    opacity: 0.7 !important;
  }
  .cib-val {
    font-size: 20px !important;
    font-weight: 400 !important;
    color: #fff !important;
    text-decoration: none !important;
    font-family: "DM Serif Display", serif !important;
  }

}

/* Hide flatpickr selection arrows (up/down and month chevron) in calendar */
.flatpickr-calendar .numInputWrapper span,
.flatpickr-calendar .flatpickr-monthDropdown-months,
.flatpickr-calendar .flatpickr-monthDropdown-month {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Hide the native arrow for month dropdown */
.flatpickr-calendar select.flatpickr-monthDropdown-months {
  background-image: none !important;
}

