/* ==========================================================================
   QUEEN Luxury Hookah Club — vzhled webu
   Barvy: černá + zlatá. Písmo: Cormorant Garamond (nadpisy) + Jost (text).
   ========================================================================== */

:root {
  --bg: #0a0a0c;
  --bg-alt: #0f0f12;
  --surface: #141418;
  --surface-2: #1b1b21;
  --gold: #e5ba5b;
  --gold-dark: #cc9e39;
  --gold-soft: rgba(229, 186, 91, 0.14);
  --text: #f5f2ec;
  --muted: #a49d90;
  --line: rgba(255, 255, 255, 0.08);
  --line-gold: rgba(229, 186, 91, 0.28);
  --radius: 14px;
  --radius-lg: 24px;
  --shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.95);
  --container: 1180px;
  --nav-h: 82px;
  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Jost', 'Muli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0.01em;
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: #000;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------- layout -- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 130px) 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 5vw, 66px);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-size: clamp(38px, 6vw, 62px);
}

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

.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

/* -------------------------------------------------------------- buttons -- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0c;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease,
    box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: #0a0a0c;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -20px rgba(229, 186, 91, 0.9);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--line-gold);
}

.btn--ghost:hover {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

/* --------------------------------------------------------------- navbar -- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
    border-color 0.35s ease, height 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  height: 68px;
  background: rgba(10, 10, 12, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo img {
  height: 40px;
  width: auto;
  transition: height 0.35s ease;
}

.nav.is-scrolled .nav__logo img {
  height: 34px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav__links a {
  position: relative;
  color: var(--text);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 0;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--gold);
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__cta {
  padding: 12px 26px;
  font-size: 12px;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.nav__toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: background 0.2s ease;
}

.nav__toggle span::before,
.nav__toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 0.28s ease, top 0.28s ease;
}

.nav__toggle span::before {
  top: -6px;
}

.nav__toggle span::after {
  top: 6px;
}

.nav__toggle[aria-expanded='true'] span {
  background: transparent;
}

.nav__toggle[aria-expanded='true'] span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle[aria-expanded='true'] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* mobilní menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 100px 32px 40px;
  background: rgba(8, 8, 10, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: var(--ff-display);
  font-size: 30px;
  letter-spacing: 0.02em;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .btn {
  margin-top: 28px;
  align-self: stretch;
}

/* ----------------------------------------------------------------- hero -- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__slideshow li {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 48s linear infinite;
  will-change: opacity, transform;
}

.hero__slideshow li:nth-child(1) {
  background-image: url(../img/slider/slider1.jpg);
}
.hero__slideshow li:nth-child(2) {
  background-image: url(../img/slider/slider2.jpg);
  animation-delay: 8s;
}
.hero__slideshow li:nth-child(3) {
  background-image: url(../img/slider/slider3.jpg);
  animation-delay: 16s;
}
.hero__slideshow li:nth-child(4) {
  background-image: url(../img/slider/slider4.jpg);
  animation-delay: 24s;
}
.hero__slideshow li:nth-child(5) {
  background-image: url(../img/slider/slider5.jpg);
  animation-delay: 32s;
}
.hero__slideshow li:nth-child(6) {
  background-image: url(../img/slider/slider6.jpg);
  animation-delay: 40s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.02);
  }
  4% {
    opacity: 1;
  }
  16% {
    opacity: 1;
  }
  21% {
    opacity: 0;
    transform: scale(1.14);
  }
  100% {
    opacity: 0;
    transform: scale(1.14);
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
      180deg,
      rgba(8, 8, 10, 0.82) 0%,
      rgba(8, 8, 10, 0.5) 32%,
      rgba(8, 8, 10, 0.72) 72%,
      var(--bg) 100%
    ),
    radial-gradient(70% 55% at 50% 45%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero__content {
  text-align: center;
  padding: 120px 0 40px;
}

.hero__logo {
  width: clamp(120px, 18vw, 190px);
  margin: 0 auto 30px;
  opacity: 0;
  animation: riseIn 1s ease 0.15s forwards;
}

.hero__title {
  font-size: clamp(42px, 8vw, 88px);
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: riseIn 1s ease 0.3s forwards;
}

.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero__text {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(245, 242, 236, 0.82);
  font-size: clamp(16px, 2vw, 19px);
  opacity: 0;
  animation: riseIn 1s ease 0.45s forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
  opacity: 0;
  animation: riseIn 1s ease 0.6s forwards;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__bar {
  position: relative;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 10, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero__bar-inner > a,
.hero__bar-inner > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: center;
}

.hero__bar-inner > a:hover {
  color: var(--gold);
}

.hero__bar-inner svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--gold);
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 104px;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
}

.hero__scroll::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 9px;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollDot 2.2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  60% {
    transform: translateY(14px);
    opacity: 0.2;
  }
}

/* ------------------------------------------------------------ nabídka --- */

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 32px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.plan--featured {
  border-color: var(--line-gold);
  background: linear-gradient(180deg, rgba(229, 186, 91, 0.07), var(--surface) 46%);
}

.plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 999px;
  background: var(--gold);
  color: #0a0a0c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan__name {
  font-size: 34px;
  color: var(--gold);
}

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 22px;
  font-family: var(--ff-display);
  font-size: 46px;
  color: var(--text);
}

.plan__price span {
  font-family: var(--ff-body);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan__text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.plan__list {
  margin: 22px 0 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.plan__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 15px;
  color: rgba(245, 242, 236, 0.86);
}

.plan__list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.plan__photo {
  display: block;
  overflow: hidden;
  margin-top: auto;
  border-radius: 14px;
  aspect-ratio: 16 / 10;
}

.plan__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.plan__photo--top img {
  object-position: center 10%;
}

.plan__photo:hover img {
  transform: scale(1.06);
}

.premium-head {
  margin: clamp(56px, 7vw, 86px) 0 34px;
  text-align: center;
}

.premium-head h3 {
  font-size: clamp(30px, 4vw, 42px);
}

.premium-head h3 em {
  font-style: italic;
  color: var(--gold);
}

.premium-head p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.premium {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.premium-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.premium-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #eef0f1;
}

.premium-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.premium-card:hover .premium-card__media img {
  transform: scale(1.06);
}

.premium-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 26px 28px;
}

.premium-card__body h4 {
  font-size: 26px;
  color: var(--gold);
}

.premium-card__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 4px 0 14px;
  font-family: var(--ff-display);
  font-size: 32px;
  color: var(--text);
}

.premium-card__price span {
  font-family: var(--ff-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.premium-card__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.plans-note {
  margin-top: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

/* ------------------------------------------------------------- nápoje --- */

.drinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.drink-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.drink-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.drink-card__media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.drink-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.drink-card:hover .drink-card__media img {
  transform: scale(1.07);
}

.drink-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(10, 10, 12, 0.75));
}

.drink-card__body {
  padding: 26px 28px 30px;
}

.drink-card__body h3 {
  font-size: 27px;
  color: var(--gold);
  margin-bottom: 10px;
}

.drink-card__body p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ------------------------------------------------------------ galerie --- */

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 38px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  color: var(--gold);
  border-color: var(--line-gold);
}

.filter-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0c;
}

.filter-btn svg {
  width: 16px;
  height: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--surface);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: rgba(10, 10, 12, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease, border-color 0.35s ease;
}

.gallery-item:hover::after {
  opacity: 1;
  border-color: var(--line-gold);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item.is-hidden {
  display: none;
}

/* -------------------------------------------------------------- o nás --- */

.about {
  position: relative;
  overflow: hidden;
  background: url(../img/team_bgr.jpg) center/cover no-repeat fixed;
  text-align: center;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.9), rgba(8, 8, 10, 0.82));
}

.about .container {
  position: relative;
}

.about__text {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--ff-display);
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.6;
  color: rgba(245, 242, 236, 0.92);
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(30px, 6vw, 80px);
  margin-top: 54px;
}

.about__stat b {
  display: block;
  font-family: var(--ff-display);
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.about__stat span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------ kontakt --- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  padding: 42px 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-card h3 {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 26px;
}

.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-row svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 4px;
  color: var(--gold);
}

.contact-row h4 {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-row p {
  margin: 0;
  font-size: 16.5px;
}

.contact-row a {
  color: var(--text);
}

.contact-row a:hover {
  color: var(--gold);
}

.hours-closed {
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--gold);
  color: #0a0a0c;
  transform: translateY(-3px);
}

.socials svg {
  width: 19px;
  height: 19px;
}

.contact-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 420px;
  padding: 40px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background-color: var(--surface);
  background-image: radial-gradient(
      70% 70% at 50% 45%,
      rgba(229, 186, 91, 0.12),
      rgba(229, 186, 91, 0) 70%
    ),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 44px 44px, 44px 44px;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-map:hover {
  border-color: var(--line-gold);
  box-shadow: var(--shadow);
}

.contact-map__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-map svg {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  color: var(--gold);
}

.contact-map strong {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 400;
  color: var(--text);
}

.contact-map__note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 15.5px;
}

.contact-map__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 30px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact-map:hover .contact-map__cta {
  background: var(--gold);
  color: #0a0a0c;
}

/* --------------------------------------------------------------- patka -- */

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer img {
  height: 34px;
  width: auto;
  opacity: 0.85;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ----------------------------------------------------------- lightbox --- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(6, 6, 8, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 84vh;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 40px 80px -40px #000;
}

.lightbox__btn {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.7);
  color: var(--gold);
  transition: all 0.25s ease;
}

.lightbox__btn:hover {
  background: var(--gold);
  color: #0a0a0c;
}

.lightbox__btn svg {
  width: 20px;
  height: 20px;
}

.lightbox__close {
  top: 26px;
  right: 26px;
}

.lightbox__prev {
  left: 26px;
  top: 50%;
  margin-top: -26px;
}

.lightbox__next {
  right: 26px;
  top: 50%;
  margin-top: -26px;
}

/* ------------------------------------------------------- scroll to top -- */

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-top:hover {
  background: var(--gold);
  color: #0a0a0c;
}

.scroll-top svg {
  width: 18px;
  height: 18px;
}

/* --------------------------------------------------- animace při scrollu */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------- responsiv -- */

@media (max-width: 1024px) {
  .plans,
  .drinks,
  .premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav__links,
  .nav > .nav__inner .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .plans,
  .drinks {
    grid-template-columns: 1fr;
  }

  .premium {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .premium-card__body {
    padding: 18px 18px 22px;
  }

  .premium-card__body h4 {
    font-size: 22px;
  }

  .premium-card__body p {
    font-size: 14px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero__bar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 24px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__content {
    padding-top: 100px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .about {
    background-attachment: scroll;
  }

  .lightbox__prev {
    left: 10px;
  }

  .lightbox__next {
    right: 10px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero__slideshow li:nth-child(1) {
    opacity: 1;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
