/* ── Scroll ── */
html { scroll-padding-top: 68px; }

/* ── Price Drawer ── */
#price-drawer {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  z-index: 45;
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  max-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
#price-drawer.open {
  transform: translateY(0);
  pointer-events: all;
}
#price-drawer-inner {
  background: #0D0B07;
  border-bottom: 1px solid rgba(191,144,56,.2);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 68px);
  overflow: hidden;
}
#price-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  top: 68px;
}
#price-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.price-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem 1rem;
  border-bottom: 1px solid rgba(191,144,56,.15);
  flex-shrink: 0;
}
.price-drawer-tag {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #BF9038;
  margin-bottom: 0.25rem;
}
.price-drawer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  color: #F5F1EA;
  letter-spacing: 0.04em;
}
.price-drawer-close {
  background: transparent;
  border: 1px solid rgba(245,241,234,.15);
  color: rgba(245,241,234,.5);
  width: 36px; height: 36px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.price-drawer-close:hover { color: #BF9038; border-color: #BF9038; }
.price-drawer-tabs {
  display: flex;
  gap: 0;
  padding: 0 3rem;
  border-bottom: 1px solid rgba(191,144,56,.12);
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.price-drawer-tabs::-webkit-scrollbar { display: none; }
.price-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(245,241,234,.45);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  margin-bottom: -1px;
}
.price-tab:hover { color: #BF9038; }
.price-tab.active { color: #BF9038; border-bottom-color: #BF9038; }
.price-drawer-body {
  overflow-y: auto;
  padding: 1.5rem 3rem;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(191,144,56,.3) transparent;
}
.price-category { display: none; }
.price-category.active { display: block; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(245,241,234,.06);
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(245,241,234,.85);
  flex: 1;
}
.price-duration {
  font-size: 0.62rem;
  color: rgba(245,241,234,.35);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}
.price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #BF9038;
  flex-shrink: 0;
  min-width: 90px;
  text-align: right;
}
.price-drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  border-top: 1px solid rgba(191,144,56,.12);
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.price-drawer-footer span {
  font-size: 0.6rem;
  color: rgba(245,241,234,.3);
  letter-spacing: 0.06em;
  font-style: italic;
}
@media (max-width: 768px) {
  .price-drawer-header { padding: 1rem 1.2rem 0.75rem; }
  .price-drawer-tabs { padding: 0 1.2rem; }
  .price-drawer-body { padding: 1rem 1.2rem; }
  .price-drawer-footer { padding: 0.75rem 1.2rem; }
}

/* ── Site Modals ── */
.site-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(9,7,3,.75);
  backdrop-filter: blur(6px);
  padding: 20px;
  animation: fadeIn 0.25s ease;
}
.site-modal.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

.site-modal-box {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, #1a1510, #0f0d09);
  border: 1px solid rgba(191,144,56,.2);
  border-radius: 12px;
  padding: 40px 36px 36px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(191,144,56,.08);
  max-height: 85vh;
  overflow-y: auto;
}
.site-modal-box::-webkit-scrollbar { width: 4px; }
.site-modal-box::-webkit-scrollbar-track { background: transparent; }
.site-modal-box::-webkit-scrollbar-thumb { background: rgba(191,144,56,.3); border-radius: 4px; }

.site-modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none;
  color: rgba(245,241,234,.35);
  font-size: 0.9rem; cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 4px 6px;
}
.site-modal-close:hover { color: #BF9038; }

/* Booking modal iframe */
.booking-iframe-wrap {
  width: 100%;
  max-width: 545px;
  height: 780px;
  max-height: 70vh;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.booking-iframe { width: 100%; height: 100%; border: 0; display: block; }

/* GYIK accordion list */
.gyik-list { display: flex; flex-direction: column; gap: 0; }
.gyik-item {
  border-bottom: 1px solid rgba(191,144,56,.1);
  padding: 14px 0;
}
.gyik-q {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #EDE8DE;
  margin-bottom: 6px;
}
.gyik-a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: rgba(245,241,234,.55);
  line-height: 1.8;
}

/* ÁSZF / Privacy legal text */
.legal-text {
  display: flex; flex-direction: column; gap: 16px;
}
.legal-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.63rem;
  color: rgba(245,241,234,.55);
  line-height: 1.85;
}
.legal-text strong {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #EDE8DE;
  margin-bottom: 4px;
}

/* ── Language Toggle ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(191,144,56,.25);
  background: rgba(13,11,7,.45);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.lang-toggle:hover {
  border-color: rgba(191,144,56,.55);
  box-shadow: 0 0 16px rgba(191,144,56,.12);
}
.lang-toggle-opt {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(245,241,234,.32);
  padding: 2px 6px;
  border-radius: 999px;
  transition: color 0.25s ease, background 0.25s ease;
  line-height: 1;
}
.lang-toggle-opt.active {
  color: #BF9038;
  background: rgba(191,144,56,.12);
}
.lang-toggle-divider {
  width: 1px;
  height: 10px;
  background: rgba(191,144,56,.2);
  flex-shrink: 0;
}

/* ── Hero layout: lock subtitle height so lang-switch doesn't reflow ── */
#hero p[data-i18n="hero.sub"] { min-height: 3.5rem; }
/* Prevent hero title lines from auto-wrapping mid-phrase */
#hero h1 { hyphens: none; overflow-wrap: normal; word-break: keep-all; }

/* ── Nav scroll effect ── */
.nav-scrolled {
  background: rgba(13,11,7,.96) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(191,144,56,.1);
}

/* ── Side section numbers ── */
.side-num {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(245,241,234,.25);
  text-decoration: none;
  transition: color .2s;
  writing-mode: vertical-rl;
}
.side-num:hover,
.side-num.active { color: #BF9038; }

/* ── Scroll arrow animation ── */
.scroll-arrow {
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(245,241,234,.3);
  border-bottom: 1px solid rgba(245,241,234,.3);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity:.4; }
  50%       { transform: rotate(45deg) translateY(4px); opacity:.9; }
}

/* ── Infinite Marquee ── */
.marquee-wrapper { overflow: hidden; position: relative; }
.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll var(--dur, 50s) linear infinite;
  padding-left: 40px;
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-card {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 280px;
  aspect-ratio: 0.65;
  cursor: pointer;
}
.marquee-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.marquee-card:hover img { transform: scale(1.06); }
.marquee-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,4,2,.92) 0%, rgba(5,4,2,.08) 55%);
}
.marquee-card-num {
  position: absolute;
  top: 14px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(191,144,56,.22);
  line-height: 1;
}
.marquee-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F1EA;
}
.marquee-card-sub {
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(191,144,56,.75);
  margin-top: 3px;
}

/* ── Before/After Slider ── */
.ba-container { user-select: none; cursor: col-resize; }
.ba-container img { pointer-events: none; user-select: none; }
.ba-before, .ba-after { position: absolute; inset: 0; overflow: hidden; }
.ba-label {
  position: absolute;
  top: 12px;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(245,241,234,.75);
  background: rgba(0,0,0,.45);
  padding: 3px 8px;
  pointer-events: none;
  z-index: 5;
}
.ba-label-before { left: 10px; }
.ba-label-after  { right: 10px; }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}
.ba-handle-line { position: absolute; inset: 0; background: #BF9038; }
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #BF9038;
  color: #0D0B07;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,.5);
}

/* ── Before/After nav buttons ── */
.ba-nav-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: 'Montserrat', sans-serif;
  color: rgba(26,21,16,.35);
  border: 1px solid rgba(26,21,16,.12);
  background: transparent;
  cursor: pointer;
  transition: all .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-nav-btn:hover {
  color: #BF9038;
  border-color: rgba(191,144,56,.5);
}
.ba-nav-btn.active {
  color: #0D0B07;
  background: #BF9038;
  border-color: #BF9038;
  box-shadow: 0 4px 14px rgba(191,144,56,.35);
}

/* ── Before/After up/down arrows ── */
.ba-arrows {
  border: 1px solid rgba(26,21,16,.12);
  border-radius: 999px;
  overflow: hidden;
  width: 38px;
}
.ba-arrow-btn {
  height: 44px;
  background: transparent;
  color: rgba(26,21,16,.7);
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-arrow-btn:hover {
  color: #BF9038;
  background: rgba(191,144,56,.06);
}

/* ── VIP 3D Card ── */
#vip-card-3d {
  will-change: transform;
  transform-origin: center center;
}
#vip-card-3d:hover {
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(191,144,56,.25), 0 0 60px rgba(191,144,56,.08) !important;
}
@media (max-width: 767px) {
  /* Replace mouse-track 3D with a gentle float + shimmer on mobile */
  #vip-card-3d {
    animation: vipFloat 4s ease-in-out infinite;
    transform: none !important;
  }
  @keyframes vipFloat {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(191,144,56,.2); }
    50%       { box-shadow: 0 28px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(191,144,56,.35), 0 0 40px rgba(191,144,56,.1); }
  }
}

/* ── VIP Card ── */
.vip-card {
  background: linear-gradient(135deg, #f6ecc9 0%, #e3c781 45%, #c8a24a 75%, #b08c38 100%);
  border: 1px solid rgba(191,144,56,.3);
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.vip-card-reflection {
  opacity: .25;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
  pointer-events: none;
}
.vip-card-pattern {
  background-image:
    repeating-linear-gradient(45deg, rgba(191,144,56,.05) 0px, rgba(191,144,56,.05) 1px, transparent 1px, transparent 16px),
    repeating-linear-gradient(-45deg, rgba(191,144,56,.05) 0px, rgba(191,144,56,.05) 1px, transparent 1px, transparent 16px);
  pointer-events: none;
}
.vip-card-emblem {
  position: relative;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(191,144,56,.4);
  border-radius: 50%;
}
.vip-card-emblem::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(191,144,56,.18);
  border-radius: 50%;
}
.vip-card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191,144,56,.2) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Gift Card Visual ── */
.gift-card-visual {
  border-radius: 14px;
  padding: 28px 22px;
  aspect-ratio: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gift-card-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
}
.gift-card-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(245,241,234,.7);
}
.gift-card-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: #F5F1EA;
}
.gift-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,241,234,.4);
}

/* ── Phone Mockup ── */
.phone-mockup {
  width: 200px;
  height: 380px;
  background: linear-gradient(160deg, #1a1510, #0d0b07);
  border: 2px solid rgba(191,144,56,.35);
  border-radius: 28px;
  padding: 10px;
  position: relative;
  box-shadow: 0 30px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(191,144,56,.1);
}
.phone-screen {
  background: #0d0b07;
  border-radius: 20px;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.phone-notch {
  width: 60px; height: 6px;
  background: rgba(191,144,56,.3);
  border-radius: 3px;
  margin: 10px auto 0;
}
.phone-option {
  font-size: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: rgba(245,241,234,.55);
  padding: 7px 9px;
  border: 1px solid rgba(191,144,56,.18);
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
}
.phone-option.active {
  color: #0D0B07;
  background: #BF9038;
  border-color: #BF9038;
}

/* ── Quiz Modal ── */
#quiz-modal.open { display: flex; }

.quiz-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(191,144,56,.18);
  cursor: pointer;
  transition: all .2s;
  font-size: 0.8rem;
  color: rgba(245,241,234,.7);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: transparent;
  text-align: left;
  width: 100%;
}
.quiz-option:hover {
  border-color: #BF9038;
  color: #F5F1EA;
  background: rgba(191,144,56,.06);
}
.quiz-option.selected {
  border-color: #BF9038;
  background: rgba(191,144,56,.12);
  color: #BF9038;
}
.quiz-option-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(191,144,56,.4);
  flex-shrink: 0;
  transition: all .2s;
}
.quiz-option.selected .quiz-option-dot {
  background: #BF9038;
  border-color: #BF9038;
}

/* ── Team Arch Cards ── */
.team-arch-card {
  cursor: pointer;
  border-radius: 999px 999px 14px 14px;
  border: 1px solid rgba(191,144,56,.3);
  background: linear-gradient(160deg, #1e1810 0%, #0d0b07 100%);
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 0 20px rgba(191,144,56,.07), inset 0 1px 0 rgba(191,144,56,.1);
}
/* Shimmer sweep — only triggers on hover-in, snaps back instantly on leave */
.team-arch-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
  transform: skewX(-18deg);
  transition: none;
  z-index: 3;
  pointer-events: none;
}
.team-arch-card:hover::after {
  left: 160%;
  transition: left 0.65s ease;
}
.team-arch-card:hover {
  border-color: rgba(191,144,56,.65);
  box-shadow: 0 0 40px rgba(191,144,56,.22), 0 20px 48px rgba(0,0,0,.45), inset 0 1px 0 rgba(191,144,56,.18);
  transform: translateY(-6px);
}
/* Photo fills arch top edge-to-edge, no circular crop */
.team-arch-photo-section {
  padding: 0;
  line-height: 0;
}
.team-arch-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0;
  overflow: hidden;
  margin: 0;
  border: none;
}
.team-arch-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  pointer-events: none;
  transition: transform 0.6s ease;
  display: block;
}
.team-arch-card:hover .team-arch-photo img {
  transform: scale(1.07);
}
/* Reni's photo: face sits lower in frame, shift crop down */
.team-photo-reni {
  object-position: center 30% !important;
}
/* "Click to read more" affordance — small text hint, bottom-right of card */
.team-arch-card::before {
  content: '+ Bemutatkozás';
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(191,144,56,.75);
  z-index: 5;
  transition: color 0.35s ease, opacity 0.35s ease;
  pointer-events: none;
}
.team-arch-card:hover::before {
  color: rgba(191,144,56,1);
}
.team-arch-card.flipped::before {
  content: '− Bezár';
  color: rgba(191,144,56,1);
}
html[lang="en"] .team-arch-card::before {
  content: '+ About me';
}
html[lang="en"] .team-arch-card.flipped::before {
  content: '− Close';
}
/* Gold gradient separator */
.team-arch-text-section {
  position: relative;
  padding: 16px 18px 22px;
  min-height: 100px;
  overflow: hidden;
  transition: min-height 0.35s ease;
}
.team-arch-card.flipped .team-arch-text-section {
  min-height: 300px;
}
.team-arch-text-section::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,144,56,.5), transparent);
}
.team-arch-text-default {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.team-arch-text-bio {
  position: absolute;
  inset: 0;
  padding: 20px 18px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  overflow-y: auto;
}
.team-arch-card.flipped .team-arch-text-default {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.team-arch-card.flipped .team-arch-text-bio {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Text styles */
.team-arch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F5F1EA;
  line-height: 1;
}
.team-arch-role {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(191,144,56,.8);
  margin-top: 9px;
}
.team-arch-divider {
  width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191,144,56,.6), transparent);
  margin: 10px auto;
}
.team-arch-bio {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.64rem;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(245,241,234,.8);
  letter-spacing: 0.01em;
}

/* ── Hero Stats Glass Card ── */
.stats-glass-card {
  min-width: 220px;
  border-radius: 20px;
  border: 1px solid rgba(191,144,56,.32);
  background: rgba(10,8,5,.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 0 0 1px rgba(191,144,56,.08) inset,
    0 32px 64px rgba(0,0,0,.55),
    0 0 80px rgba(191,144,56,.06);
  overflow: hidden;
}
/* Top highlight line */
.stats-glass-card::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(191,144,56,.5) 50%, transparent 100%);
}
.stats-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  cursor: default;
  transition: background 0.28s ease, transform 0.28s ease;
}
.stats-row:hover {
  background: rgba(191,144,56,.07);
  transform: translateX(4px);
}
.stats-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(191,144,56,.22);
  background: rgba(191,144,56,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.28s ease, background 0.28s ease;
}
.stats-row:hover .stats-icon-wrap {
  border-color: rgba(191,144,56,.5);
  background: rgba(191,144,56,.14);
}
.stats-text { flex: 1; }
.stats-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: #F5F1EA;
  line-height: 1;
  letter-spacing: -0.01em;
}
.stats-denom {
  font-size: 0.85rem;
  color: rgba(245,241,234,.35);
  font-weight: 300;
}
.stats-plus {
  font-size: 0.9rem;
  color: #BF9038;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-left: 1px;
}
.stats-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,241,234,.32);
  margin-top: 4px;
}
/* Gradient divider with light in center */
.stats-divider {
  height: 1px;
  margin: 0 22px;
  background: linear-gradient(90deg, transparent 0%, rgba(191,144,56,.28) 50%, transparent 100%);
}

/* ── Luxury Booking Button ── */
.btn-luxury {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  border-radius: 999px;
  border: 1px solid rgba(191,144,56,.7);
  background: linear-gradient(135deg, #0f0d09 0%, #1a1510 100%);
  color: #BF9038;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1),
              box-shadow 0.35s cubic-bezier(.4,0,.2,1),
              color 0.35s ease,
              border-color 0.35s ease;
  box-shadow: 0 0 24px rgba(191,144,56,.18), 0 0 60px rgba(191,144,56,.06), inset 0 1px 0 rgba(191,144,56,.12);
  white-space: nowrap;
}
/* Gold gradient fill layer */
.btn-luxury::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #e8c96a 0%, #bf9038 40%, #8b6914 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}
/* Shimmer sweep */
.btn-luxury::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  z-index: 1;
}
.btn-luxury:hover::after { left: 150%; }
.btn-luxury:hover::before { opacity: 1; }
.btn-luxury:hover {
  color: #0D0B07;
  transform: scale(1.03);
  border-color: transparent;
  box-shadow: 0 0 40px rgba(191,144,56,.45), 0 0 90px rgba(191,144,56,.18), inset 0 1px 0 rgba(255,255,255,.2);
}
.btn-luxury:active { transform: scale(0.95); transition-duration: 0.08s; }
.btn-luxury-text, .btn-luxury-arrow { position: relative; z-index: 2; }
.btn-luxury-arrow { transition: transform 0.3s ease; display: inline-block; }
.btn-luxury:hover .btn-luxury-arrow { transform: translateX(6px); }

/* Swiper testimonials ── */
.testi-bullet {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(191,144,56,.25);
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.testi-bullet-active {
  background: #BF9038;
  width: 22px;
  border-radius: 3px;
}
.testi-swiper .swiper-slide { height: auto; }

/* ── Mobile menu ── */
#mob-menu.open { display: flex; }

/* ── Compact Footer ── */
.footer-compact {
  background: #090703;
  border-top: 1px solid rgba(191,144,56,.1);
  padding: 32px 60px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 140px repeat(4, 1fr) 160px;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(191,144,56,.07);
  align-items: start;
}
/* Brand col */
.footer-brand {}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.footer-social-link {
  color: rgba(245,241,234,.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social-link:hover { color: #BF9038; }
/* Link columns */
.footer-col-head {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,241,234,.22);
  margin-bottom: 12px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  color: rgba(245,241,234,.38);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: #BF9038; }
/* Contact list */
.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  color: rgba(245,241,234,.38);
  letter-spacing: 0.03em;
  line-height: 1.5;
}
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact-link {
  color: rgba(245,241,234,.38);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-link:hover { color: #BF9038; }
/* Map */
.footer-map {
  border-radius: 8px;
  overflow: hidden;
  height: 140px;
  border: 1px solid rgba(191,144,56,.15);
}
/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem;
  color: rgba(245,241,234,.15);
  letter-spacing: 0.06em;
}
.footer-bottom a {
  color: rgba(245,241,234,.15);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: #BF9038; }
/* Dev credit */
.footer-dev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.48rem;
  color: rgba(245,241,234,.12);
  letter-spacing: 0.06em;
}
.footer-dev-dot { color: rgba(191,144,56,.3); }
.footer-dev-link {
  color: rgba(191,144,56,.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-dev-link:hover { color: #BF9038; }
/* Responsive */
@media (max-width: 1023px) {
  .footer-compact { padding: 28px 24px 0; }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .footer-map { height: 120px; grid-column: span 2; }
}

/* ── Mobile: ≤ 767px ─────────────────────────────────── */
@media (max-width: 767px) {
  /* Space for sticky booking bar */
  body { padding-bottom: 76px; }

  /* Larger touch targets for links and small buttons */
  .footer-links a { padding: 5px 0; display: inline-block; }
  #mob-menu a { min-height: 44px; display: flex; align-items: center; }
  .ba-nav-btn { width: 42px; height: 42px; }
  .ba-arrows { width: 42px; }
  .ba-arrow-btn { width: 44px; height: 44px; }
  .site-modal-close { padding: 10px 12px; font-size: 1rem; }

  /* Hero — scale down h1, tighten subtitle */
  #hero h1 { font-size: 2.6rem !important; }
  #hero p[data-i18n="hero.sub"] { min-height: 3.5rem; font-size: 0.78rem; }

  /* Hero stats card — centred at bottom */
  #hero-stats {
    right: 50%;
    transform: translateX(50%);
    bottom: 20px;
    top: auto;
    width: calc(100% - 40px);
    max-width: 340px;
    padding: 14px 16px;
  }
  .stats-row { gap: 10px; padding: 8px 0; }
  .stats-icon { width: 28px; height: 28px; }
  .stats-number { font-size: 1.05rem; }
  .stats-label { font-size: 0.5rem; }

  /* Hero mobile stats grid — 2x2, bordered cells */
  .hero-stats-mob > div {
    background: rgba(191,144,56,.05);
    border: 1px solid rgba(191,144,56,.18);
    border-radius: 8px;
  }
  .hero-stats-mob .leading-none { line-height: 1.1 !important; }

  /* Marquee cards — narrower on mobile */
  .marquee-card { width: 210px; }

  /* Before/After — shrink slider height */
  #elotte-utana .flex-1.relative { min-height: 200px !important; }

  /* Instagram — 3 cols stays, reduce gap */
  #instagram .grid { gap: 6px !important; }

  /* Team cards — 2 columns on mobile */
  #rolunk .grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .team-arch-card { min-height: unset; }
  .team-arch-card::before { display: none; }
  .team-arch-photo { aspect-ratio: 0.85; }
  .team-arch-name { font-size: 0.78rem; letter-spacing: 0.12em; }
  .team-arch-text-section { padding: 8px 10px 10px; min-height: 60px; overflow: hidden; }
  .team-arch-card.flipped .team-arch-text-section { min-height: 180px !important; }
  .team-arch-bio { font-size: 0.56rem; line-height: 1.5; }
  .team-arch-divider { margin: 4px auto 6px; }

  /* Floating booking bar — hidden until scrolled past hero */
  #mob-booking-bar {
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  #mob-booking-bar.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Gift cards — 3 columns on mobile, smaller */
  #ajandek .grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }
  .gift-card-visual { padding: 12px 10px; }
  .gift-card-amount { font-size: 1.1rem; }
  .gift-card-logo { font-size: 0.45rem; }
  .gift-card-label { font-size: 0.45rem; }

  /* Nav — mobile */
  #main-nav { padding-left: 1rem !important; padding-right: 1rem !important; }
  .nav-book-desktop { display: none !important; }
  #mob-menu-btn { font-size: 1.6rem !important; padding: 6px 8px !important; }

  /* VIP card — full width */
  #vip-card-3d { max-width: 100% !important; }

  /* Testimonial slides — 1 per view */
  .testi-swiper .swiper-slide { padding: 0; }

  /* Hero text — push down ~1cm on mobile */
  #hero-content { padding-top: 6.5rem !important; }

  /* Footer — compact single screen on mobile */
  .footer-compact { padding: 18px 16px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 16px;
    padding-bottom: 14px;
  }
  .footer-brand { grid-column: span 2; display: flex; align-items: center; justify-content: space-between; }
  .footer-socials { margin-top: 0; }
  .footer-col-head { margin-bottom: 6px; }
  .footer-links { gap: 4px; }
  .footer-links a { font-size: 0.55rem; }
  .footer-contact-list { gap: 4px; }
  .footer-contact-list li { font-size: 0.52rem; }
  .footer-inner > .footer-col:last-of-type { grid-column: span 2; }
  /* Hide map on mobile — saves a lot of space */
  .footer-map { display: none !important; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; padding: 8px 0; font-size: 0.45rem; }
  .footer-bottom .flex { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .footer-dev { padding-bottom: 90px; } /* space for fixed booking bar */

  /* Modal — full width */
  .site-modal { padding: 12px; }
  .site-modal-box { padding: 32px 20px 24px; border-radius: 8px; max-height: 90vh; }

  .booking-modal-box { padding: 16px !important; }
  .booking-iframe-wrap { height: 75vh; max-height: none; }
}

/* ── Mobile: ≤ 479px (very small) ───────────────────── */
@media (max-width: 479px) {
  #hero h1 { font-size: 2.2rem !important; }
  #hero-stats { display: none; }

  #rolunk .grid { gap: 8px !important; }
  .team-arch-bio { -webkit-line-clamp: 5; }

  /* Hide B/A side nav on tiny screens */
  #elotte-utana .flex.flex-col.justify-between { display: none !important; }
  #elotte-utana .flex-1.flex.gap-4 { gap: 0 !important; }
}
