/* ============================================================
   4xSound Studio — Limassol
   Design: Dark Neon / Studio  (+ Light theme)
   Vanilla CSS layer on top of Bootstrap 5
   ============================================================ */

/* ---------- Theme tokens ---------- */
:root {
  /* dark (default) */
  --bg:            #0B0B12;
  --bg-2:          #101019;
  --surface:       #16161F;
  --surface-2:     #1E1E2B;
  --border:        rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text:          #F3F2FB;
  --text-soft:     #C7C5DA;
  --muted:         #8B89A3;

  --accent:        #7C3AED;   /* violet */
  --accent-2:      #06B6D4;   /* cyan   */
  --accent-soft:   rgba(124, 58, 237, 0.16);
  --accent-2-soft: rgba(6, 182, 212, 0.14);
  --danger:        #F43F5E;
  --success:       #22C55E;

  --grad:          linear-gradient(120deg, var(--accent) 0%, var(--accent-2) 100%);
  --glow:          0 0 0 1px rgba(124,58,237,.35), 0 14px 50px -12px rgba(124,58,237,.55);

  --radius:        18px;
  --radius-sm:     12px;
  --shadow:        0 24px 60px -24px rgba(0,0,0,.7);
  --ease:          cubic-bezier(.16,1,.3,1);

  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --nav-h: 74px;
}

[data-theme="light"] {
  --bg:            #F6F5F2;
  --bg-2:          #FFFFFF;
  --surface:       #FFFFFF;
  --surface-2:     #F1EFEA;
  --border:        rgba(16, 16, 30, 0.10);
  --border-strong: rgba(16, 16, 30, 0.20);
  --text:          #15131F;
  --text-soft:     #2E2B3D;
  --muted:         #6B687B;

  --accent:        #6D28D9;
  --accent-2:      #0891B2;
  --accent-soft:   rgba(109, 40, 217, 0.10);
  --accent-2-soft: rgba(8, 145, 178, 0.10);

  --glow:          0 0 0 1px rgba(109,40,217,.22), 0 16px 40px -16px rgba(109,40,217,.40);
  --shadow:        0 24px 50px -28px rgba(20,19,31,.30);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}

h1, h2, h3, h4, .display-1, .display-2, .display-3 {
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

a { color: inherit; text-decoration: none; }

.text-muted-c { color: var(--muted) !important; }
.text-soft    { color: var(--text-soft); }

.accent-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

::selection { background: var(--accent); color: #fff; }

/* ambient background glow blobs */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none;
}
.bg-fx span {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
}
.bg-fx span:nth-child(1){ width: 480px; height: 480px; top: -120px; left: -100px; background: var(--accent); opacity:.30; }
.bg-fx span:nth-child(2){ width: 420px; height: 420px; top: 30%; right: -140px; background: var(--accent-2); opacity:.22; }
.bg-fx span:nth-child(3){ width: 520px; height: 520px; bottom: -180px; left: 35%; background: #DB2777; opacity:.16; }
.bg-grid {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .4;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

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

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-soft);
  padding: .4rem .9rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: var(--surface);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 12px var(--accent); }

.section-title { font-size: clamp(1.9rem, 4.2vw, 3.1rem); margin: 1rem 0 0; }
.section-lead  { color: var(--muted); max-width: 620px; font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn { font-family: var(--font-head); font-weight: 600; border-radius: 100px; padding: .8rem 1.6rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s; border: none; }
.btn:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; }

.btn-glow { background: var(--grad); color: #fff; position: relative; box-shadow: var(--glow); }
.btn-glow:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 0 0 1px rgba(124,58,237,.5), 0 22px 60px -14px rgba(124,58,237,.75); }
.btn-glow:active { transform: translateY(-1px); }

.btn-ghost { background: var(--surface); color: var(--text); border: 1px solid var(--border-strong); }
.btn-ghost:hover { color: var(--text); border-color: var(--accent); background: var(--surface-2); transform: translateY(-3px); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav-shell.scrolled {
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.brand { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; letter-spacing: -.02em; display: flex; align-items: center; gap: .6rem; }
.brand .mark {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-size: .95rem; box-shadow: 0 8px 24px -8px var(--accent);
}
.brand .mark span { transform: translateY(-1px); }

.nav-link-c { color: var(--text-soft); font-weight: 500; padding: .4rem .2rem; position: relative; transition: color .3s; }
.nav-link-c::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--grad); transition: width .35s var(--ease); }
.nav-link-c:hover { color: var(--text); }
.nav-link-c:hover::after { width: 100%; }
.nav-link-c.active-link { color: var(--text); }
.nav-link-c.active-link::after { width: 100%; }

/* lang + theme controls */
.pill-group { display: inline-flex; background: var(--surface); border: 1px solid var(--border); border-radius: 100px; padding: 3px; }
.pill-group button {
  border: none; background: transparent; color: var(--muted);
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  padding: .35rem .7rem; border-radius: 100px; cursor: pointer; transition: all .25s var(--ease);
}
.pill-group button.active { background: var(--grad); color: #fff; }
.pill-group button:hover:not(.active) { color: var(--text); }

/* compact language dropdown */
.lang-dd { position: relative; }
.lang-trigger {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--surface); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  padding: .5rem .7rem; border-radius: 100px; cursor: pointer; transition: border-color .3s, background .3s;
}
.lang-trigger:hover { border-color: var(--accent); background: var(--surface-2); }
.lang-trigger svg { width: 16px; height: 16px; }
.lang-trigger .chev { width: 13px; height: 13px; opacity: .7; transition: transform .3s var(--ease); }
.lang-dd.open .lang-trigger .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 172px;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: 6px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 1040;
}
.lang-dd.open .lang-menu { opacity: 1; transform: none; pointer-events: auto; }
.lang-menu button {
  text-align: left; border: none; background: transparent; color: var(--text-soft);
  font-family: var(--font-body); font-size: .9rem; padding: .55rem .7rem; border-radius: 8px; cursor: pointer; transition: background .2s, color .2s;
}
.lang-menu button:hover { background: var(--surface-2); color: var(--text); }
.lang-menu button.active { background: var(--accent-soft); color: var(--text); font-weight: 600; }

.theme-toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: transform .4s var(--ease), border-color .3s, background .3s;
}
.theme-toggle:hover { transform: rotate(20deg) scale(1.05); border-color: var(--accent); }
.theme-toggle svg { width: 20px; height: 20px; }
[data-theme="light"] .theme-toggle .i-moon { display: none; }
[data-theme="light"] .theme-toggle .i-sun  { display: block; }
.theme-toggle .i-sun  { display: none; }
.theme-toggle .i-moon { display: block; }

/* mobile menu */
.nav-burger { width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border); background: var(--surface); color: var(--text); display: none; place-items: center; cursor: pointer; }
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0; z-index: 1029; background: var(--bg-2);
  transform: translateX(100%); transition: transform .5s var(--ease); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; gap: .4rem; overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; padding: .8rem 0; border-bottom: 1px solid var(--border); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: var(--nav-h); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; transform: scale(1.05); }
.hero-media::after {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 75% 30%, transparent, var(--bg) 78%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 30%, transparent) 0%, var(--bg) 92%);
}
[data-theme="light"] .hero-media img { opacity: .30; }

.hero h1 { font-size: clamp(2.6rem, 7vw, 5.4rem); }
.hero .lead { color: var(--text-soft); font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 560px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .95rem; border-radius: 100px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text-soft); font-size: .88rem; font-weight: 500;
}
.chip svg { width: 16px; height: 16px; color: var(--accent-2); }

.hero-stats { display: flex; gap: clamp(1.2rem, 4vw, 3rem); flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; }
.hero-stats .lbl { color: var(--muted); font-size: .85rem; }

/* equalizer animation in hero */
.equalizer { display: flex; align-items: flex-end; gap: 4px; height: 42px; }
.equalizer i { width: 5px; border-radius: 4px; background: var(--grad); animation: eq 1.1s ease-in-out infinite; }
.equalizer i:nth-child(1){ animation-delay: 0s;   }
.equalizer i:nth-child(2){ animation-delay: .15s; }
.equalizer i:nth-child(3){ animation-delay: .30s; }
.equalizer i:nth-child(4){ animation-delay: .45s; }
.equalizer i:nth-child(5){ animation-delay: .60s; }
.equalizer i:nth-child(6){ animation-delay: .75s; }
.equalizer i:nth-child(7){ animation-delay: .25s; }
@keyframes eq { 0%,100%{ height: 22%; } 50%{ height: 100%; } }

/* ---------- Cards / generic ---------- */
.card-c {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .45s var(--ease), border-color .4s, box-shadow .45s var(--ease);
  position: relative; overflow: hidden;
}
.card-c:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow); }

/* feature cards */
.feature { padding: 1.8rem; height: 100%; }
.feature .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--accent-soft); color: var(--accent); border: 1px solid var(--border);
}
.feature:hover .ico { background: var(--grad); color: #fff; }
.feature .ico svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.2rem; }
.feature p { color: var(--muted); margin: 0; font-size: .96rem; }

/* ---------- Rooms ---------- */
.room-card { padding: 0; }
.room-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.room-card:hover .room-media img { transform: scale(1.07); }
.room-media .price-tag {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: color-mix(in srgb, var(--bg) 65%, transparent); backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong); border-radius: 100px; padding: .4rem .9rem;
  font-family: var(--font-head); font-weight: 700;
}
.room-media .price-tag b { color: var(--text); }
.room-media .price-tag span { color: var(--muted); font-weight: 500; font-size: .85rem; }
.room-media::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--bg) 85%, transparent)); }
.room-body { padding: 1.6rem 1.7rem 1.8rem; }
.room-body h3 { font-size: 1.5rem; }
.room-specs { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0 1.3rem; }
.spec { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--text-soft); background: var(--surface-2); border: 1px solid var(--border); border-radius: 100px; padding: .35rem .8rem; }
.spec svg { width: 15px; height: 15px; color: var(--accent-2); }

/* ---------- Booking ---------- */
.booking-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(1.2rem, 3vw, 2rem); box-shadow: var(--shadow); }

.room-switch { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.room-switch label {
  cursor: pointer; border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .9rem 1rem; display: flex; flex-direction: column; gap: .15rem; transition: all .3s var(--ease);
  background: var(--bg-2);
}
.room-switch input { position: absolute; opacity: 0; pointer-events: none; }
.room-switch label:hover { border-color: var(--border-strong); }
.room-switch input:checked + label { border-color: var(--accent); background: var(--accent-soft); box-shadow: inset 0 0 0 1px var(--accent); }
.room-switch .r-name { font-family: var(--font-head); font-weight: 600; }
.room-switch .r-price { color: var(--accent-2); font-weight: 600; font-size: .9rem; }

.field-label { font-family: var(--font-head); font-weight: 600; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; display: block; }

/* date strip */
.date-strip { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .4rem; scrollbar-width: thin; }
.date-strip::-webkit-scrollbar { height: 6px; }
.date-strip::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 10px; }
.date-cell {
  flex: 0 0 auto; min-width: 64px; text-align: center; cursor: pointer;
  border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .65rem .4rem;
  background: var(--bg-2); transition: all .25s var(--ease);
}
.date-cell:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.date-cell.active { background: var(--grad); border-color: transparent; color: #fff; }
.date-cell.active .dc-dow, .date-cell.active .dc-mon { color: rgba(255,255,255,.85); }
.date-cell .dc-dow { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.date-cell .dc-day { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; line-height: 1.1; }
.date-cell .dc-mon { font-size: .7rem; color: var(--muted); }

/* time slots */
.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: .5rem; }
.slot {
  border: 1px solid var(--border); border-radius: 10px; padding: .55rem .2rem; text-align: center;
  font-family: var(--font-head); font-weight: 600; font-size: .9rem; cursor: pointer; user-select: none;
  background: var(--bg-2); transition: all .18s var(--ease); position: relative;
}
.slot:hover:not(.booked) { border-color: var(--accent); transform: translateY(-2px); }
.slot.selected { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 8px 20px -8px var(--accent); }
.slot.in-range { background: color-mix(in srgb, var(--accent) 26%, var(--surface)); border-color: var(--accent); color: var(--text); }
.slot.booked { background: repeating-linear-gradient(45deg, var(--surface-2), var(--surface-2) 6px, transparent 6px, transparent 12px); color: var(--muted); cursor: not-allowed; opacity: .7; text-decoration: line-through; }
.slot.disabled { color: var(--muted); cursor: not-allowed; opacity: .4; }
.slot.disabled:hover { transform: none; border-color: var(--border); }
.slot.pending { border-color: var(--danger); color: var(--danger); cursor: not-allowed; }
.slot.pending::after { content:""; position:absolute; top:5px; right:5px; width:6px; height:6px; border-radius:50%; background: var(--danger); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

/* duration step (start slot chosen → pick how long) */
.slots-grid.is-duration { grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); }
.dur-head { grid-column: 1 / -1; display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: .3rem; }
.dur-back {
  display: inline-flex; align-items: center; gap: .25rem; border: 1px solid var(--border);
  background: var(--bg-2); color: var(--text); border-radius: 9px; padding: .4rem .8rem;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; cursor: pointer;
  transition: all .18s var(--ease);
}
.dur-back:hover { border-color: var(--accent); transform: translateY(-1px); }
.dur-head-info { color: var(--muted); font-size: .95rem; }
.dur-head-info b { color: var(--text); font-family: var(--font-head); font-size: 1.05rem; }
.slot.dur { display: flex; flex-direction: column; gap: .12rem; padding: .5rem .25rem; line-height: 1.15; }
.slot.dur .dur-h { font-size: .95rem; }
.slot.dur .dur-end { font-size: .72rem; font-weight: 500; color: var(--muted); }
.slot.dur.selected .dur-end { color: rgba(255,255,255,.85); }
.dur-empty { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; padding: .4rem 0; }

.legend { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: .4rem; }
.legend i { width: 14px; height: 14px; border-radius: 4px; display: inline-block; border: 1px solid var(--border); }
.legend .l-free { background: var(--bg-2); }
.legend .l-sel  { background: var(--grad); border-color: transparent; }
.legend .l-pend { border-color: var(--danger); }
.legend .l-book { background: var(--surface-2); }

.input-c {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  border-radius: var(--radius-sm); padding: .85rem 1rem; font-family: var(--font-body); font-size: 1rem;
  transition: border-color .25s, box-shadow .25s;
}
textarea.input-c, .note-input { min-height: 84px; resize: vertical; line-height: 1.45; }
.booking-weekday { color: var(--text); font-weight: 600; }
.eq-status.is-ok { color: var(--accent); }
.eq-status.is-err { color: #ff6b6b; }
.input-c::placeholder { color: var(--muted); }
.input-c:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.input-group-c { position: relative; }
.input-group-c .prefix { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--muted); font-weight: 600; pointer-events: none; }
.input-group-c .input-c { padding-left: 2.1rem; }

/* booking summary */
.summary { background: var(--bg-2); border: 1px dashed var(--border-strong); border-radius: var(--radius-sm); padding: 1rem 1.2rem; }
.summary .row-s { display: flex; justify-content: space-between; padding: .25rem 0; color: var(--text-soft); font-size: .95rem; }
.summary .row-s.total { border-top: 1px solid var(--border); margin-top: .5rem; padding-top: .7rem; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--text); }
.summary .row-s.total b { color: var(--accent-2); }

.toast-c {
  position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 140%);
  opacity: 0; visibility: hidden; pointer-events: none;
  background: var(--surface); border: 1px solid var(--border-strong); border-left: 4px solid var(--success);
  border-radius: var(--radius-sm); padding: 1rem 1.3rem; max-width: 420px; z-index: 2000;
  box-shadow: var(--shadow); transition: transform .5s var(--ease), opacity .35s var(--ease), visibility .35s;
}
.toast-c.show { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
.toast-c .t-title { font-family: var(--font-head); font-weight: 700; }
.toast-c .t-body { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- Conditions ---------- */
.cond-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.cond-list li { display: flex; gap: .9rem; align-items: flex-start; }
.cond-list .ck { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); margin-top: 2px; }
.cond-list .ck svg { width: 15px; height: 15px; }
.cond-list b { color: var(--text); }
.cond-list span { color: var(--muted); }

.price-board { display: grid; gap: .8rem; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-2); transition: all .3s var(--ease); }
.price-row:hover { border-color: var(--accent); transform: translateX(4px); }
.price-row .pr-name { font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; }
.price-row .pr-val { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; }
.price-row .pr-val span { font-size: .85rem; color: var(--muted); font-weight: 500; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius-sm); overflow: hidden; position: relative; cursor: pointer; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .5s; }
.gallery-grid figure::after { content:""; position:absolute; inset:0; background: var(--grad); opacity:0; transition: opacity .4s; mix-blend-mode: overlay; }
.gallery-grid figure:hover img { transform: scale(1.08); }
.gallery-grid figure:hover::after { opacity: .35; }
.gallery-grid .g-wide { grid-column: span 2; }
.gallery-grid .g-tall { grid-row: span 2; }

/* ---------- Reviews (Swiper) ---------- */
.reviews-swiper { padding: 8px 4px 4px; }
.review-card { padding: 1.8rem 1.7rem; height: auto; display: flex; flex-direction: column; gap: 1.1rem; }
.review-card .quote { color: var(--accent); opacity: .5; }
.review-card .quote svg { width: 34px; height: 34px; }
.review-card .r-text { color: var(--text-soft); font-size: 1.02rem; line-height: 1.6; margin: 0; flex: 1; }
.review-card .r-foot { display: flex; align-items: center; gap: .85rem; }
.review-card .r-ava { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border-strong); }
.review-card .r-ava-fb { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: var(--grad); }
.review-card .r-name { font-family: var(--font-head); font-weight: 700; line-height: 1.1; }
.review-card .r-role { color: var(--muted); font-size: .85rem; }
.review-card .r-stars { display: inline-flex; gap: 2px; color: #F5B544; }
.review-card .r-stars svg { width: 16px; height: 16px; }

.swiper-pagination-bullet { background: var(--text-soft); opacity: .35; transition: all .3s var(--ease); }
.swiper-pagination-bullet-active { background: var(--accent); opacity: 1; width: 22px; border-radius: 5px; }
.reviews-nav { display: flex; gap: .6rem; }
.reviews-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); cursor: pointer; display: grid; place-items: center;
  transition: all .3s var(--ease);
}
.reviews-nav button:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-2px); }
.reviews-nav button svg { width: 20px; height: 20px; }
.reviews-nav button.is-disabled { opacity: .35; pointer-events: none; }

/* ---------- Contacts ---------- */
.contact-card { padding: 1.4rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; }
.contact-card .ico { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.contact-card .ico svg { width: 22px; height: 22px; }
.contact-card h3 { font-size: 1.05rem; margin: 0 0 .2rem; }
.contact-card a, .contact-card p { color: var(--muted); margin: 0; transition: color .3s; }
.contact-card a:hover { color: var(--accent-2); }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 100%; min-height: 320px; position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }
[data-theme="dark"] .map-wrap iframe { filter: grayscale(.4) invert(.9) hue-rotate(180deg) contrast(.9); }

/* ---------- CTA band ---------- */
.cta-band {
  border-radius: var(--radius); padding: clamp(2.2rem, 5vw, 4rem); text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(120deg, var(--accent-soft), var(--accent-2-soft));
  border: 1px solid var(--border-strong);
}
.cta-band::before { content:""; position:absolute; inset:0; background: var(--bg); opacity:.55; z-index:-1; }
.cta-band h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 3.5rem 0 2rem; background: var(--bg-2); }
.footer a { color: var(--muted); transition: color .3s; }
.footer a:hover { color: var(--text); }
.footer .fnav { display: flex; flex-direction: column; gap: .6rem; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; bottom: 20px; left: 20px; right: 20px; max-width: 760px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 1.1rem 1.3rem; box-shadow: var(--shadow); z-index: 1500;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  transform: translateY(150%); opacity: 0; transition: transform .6s var(--ease), opacity .6s var(--ease);
}
.cookie.show { transform: translateY(0); opacity: 1; }
.cookie .c-ico { flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); }
.cookie .c-ico svg { width: 22px; height: 22px; }
.cookie p { margin: 0; font-size: .92rem; color: var(--text-soft); flex: 1; min-width: 220px; }
.cookie p a { color: var(--accent-2); border-bottom: 1px dashed currentColor; }
.cookie p a:hover { opacity: .85; }
.cookie-actions { display: flex; gap: .6rem; }
.cookie-actions .btn { padding: .6rem 1.2rem; font-size: .9rem; }
@media (max-width: 575px) {
  .cookie { flex-direction: column; align-items: stretch; text-align: left; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; }
}

/* compact language switcher fits down to ~350px; hide below */
@media (max-width: 349px) { .lang-dd { display: none !important; } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .equalizer i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .nav-desktop { display: none !important; }
  .nav-burger { display: grid; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}
@media (max-width: 575px) {
  .hero-stats { gap: 1.4rem; }
  .room-switch { grid-template-columns: 1fr; }
  .gallery-grid .g-wide { grid-column: span 2; }
}

/* ---------- Content pages (privacy etc.) via the universal info template ---------- */
.info-page { padding: clamp(7rem, 14vh, 10rem) 0 6rem; }
.info-page .container-xxl { max-width: 860px; margin: 0 auto; padding: 0 1.25rem; }
.info-hero { text-align: center; margin-bottom: 2.75rem; }
.info-hero h1 { font-size: clamp(2rem, 4.6vw, 3rem); margin: .75rem 0 1rem; }
.info-hero p { color: var(--text-soft); max-width: 620px; margin: 0 auto; }
.info-content { color: var(--text-soft); line-height: 1.75; }
.info-content h2 { color: var(--text); font-size: 1.3rem; margin: 2.25rem 0 .75rem; }
.info-content p { margin: 0 0 1.1rem; }
.info-content a { color: var(--accent-2); }

/* ---------- Equipment inventory (rental section) ---------- */
.eq-cat { padding: 1.6rem; }
.eq-head { display: flex; align-items: center; gap: .85rem; margin-bottom: 1rem; }
.eq-head .ico {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.eq-head .ico svg { width: 23px; height: 23px; }
.eq-cat:hover .eq-head .ico { background: var(--grad); color: #fff; }
.eq-head h3 { font-size: 1.14rem; margin: 0; line-height: 1.25; }
.eq-blurb { color: var(--muted); font-size: .92rem; margin: 0 0 1.1rem; }
.eq-blurb-solo { margin-bottom: 0; }
.eq-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.eq-list li { padding-top: .9rem; border-top: 1px solid var(--border); }
.eq-list li:first-child { padding-top: 0; border-top: 0; }
.eq-line { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.eq-line b { color: var(--text); font-size: .97rem; }
.eq-qty {
  flex: 0 0 auto; font-size: .72rem; font-weight: 600; letter-spacing: .03em;
  color: var(--accent-2); background: var(--accent-2-soft);
  border-radius: 100px; padding: .22rem .62rem; white-space: nowrap;
}
.eq-qty-alt { color: var(--accent); background: var(--accent-soft); }
.eq-desc { display: block; color: var(--muted); font-size: .86rem; margin-top: .25rem; line-height: 1.45; }
