/* ════════════════════════════════════════════════════
   REGERA d.o.o. — Stylesheet
   ════════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #111115;
  --bg2:        #17171c;
  --surface:    #1c1c22;
  --surface2:   #22222a;
  --border:     rgba(255,255,255,.08);
  --border2:    rgba(255,255,255,.14);
  --gold:       #c8a96e;
  --gold-dim:   rgba(200,169,110,.12);
  --accent:     #3a7bd5;
  --text:       #e8e8e8;
  --text2:      rgba(232,232,232,.65);
  --muted:      rgba(232,232,232,.55);
  --hdr:        72px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(200,169,110,.35); border-radius: 4px; }

/* ── Eyebrow label ──────────────────────────────────── */
.eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--gold);
  opacity: .35;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .28s var(--ease);
  border: none;
  font-family: 'Outfit', sans-serif;
}
.btn-gold {
  background: linear-gradient(135deg,var(--gold),#9e7832);
  color: #08080b;
}
.btn-gold:hover { opacity: .87; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(200,169,110,.22); }

.btn-blue {
  background: linear-gradient(135deg,var(--accent),#2554a8);
  color: #fff;
}
.btn-blue:hover { opacity: .88; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(58,123,213,.28); }

.btn-outline {
  border: 1px solid var(--border2);
  color: var(--text2);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

.btn-ghost {
  border: 1px solid var(--border2);
  color: var(--text);
  background: rgba(255,255,255,.03);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); }

/* ════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 900;
  height: var(--hdr);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  transition: background .3s, border-color .3s;
}
#header.solid {
  background: rgba(8,8,11,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

/* logo */
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
}
.logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text);
}
.logo-name span { color: var(--gold); }

/* nav */
nav { display: flex; align-items: center; gap: 34px; }

.nav-link {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { background: var(--gold); }

.nav-cta {
  padding: 8px 20px;
  border: 1px solid rgba(200,169,110,.45);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  transition: all .25s;
}
.nav-cta:hover { background: var(--gold); color: var(--bg); }

/* hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  position: fixed;
  top: var(--hdr); left: 0; width: 100%;
  background: rgba(8,8,11,.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
  z-index: 850;
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer .nav-link {
  font-size: 15px;
  letter-spacing: 2px;
  color: var(--text2);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* ════════════════════════════════════════════════════
   FULLPAGE — SIDE DOTS
   ════════════════════════════════════════════════════ */
#fp-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  cursor: pointer;
  transition: all .3s;
  position: relative;
}
.fp-dot::after {
  content: attr(data-label);
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.fp-dot:hover::after { opacity: 1; }
.fp-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.5);
}

/* ════════════════════════════════════════════════════
   FULLPAGE — SECTIONS (DESKTOP)
   ════════════════════════════════════════════════════ */
#fp-wrapper { position: relative; }

/* Desktop fullpage */
@media (min-width: 900px) {
  body.fp-on { overflow: hidden; }
  body.fp-on #fp-wrapper { height: 100vh; overflow: hidden; }

  .fp-section {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    overflow: hidden;
    transition:
      transform .8s cubic-bezier(.77,0,.175,1),
      opacity   .8s cubic-bezier(.77,0,.175,1);
  }
  .fp-section.fp-above   { transform: translateY(-100%); opacity: 0; pointer-events: none; }
  .fp-section.fp-current { transform: translateY(0);     opacity: 1; pointer-events: all; }
  .fp-section.fp-below   { transform: translateY(100%);  opacity: 0; pointer-events: none; }
  /* Rent-a-car has more content than 100vh — allow internal scroll */
  #section-rent { overflow-y: auto; }
}

/* Mobile — normal scroll */
@media (max-width: 899px) {
  #fp-dots { display: none; }
  .fp-section {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
    pointer-events: all !important;
  }
}

/* ════════════════════════════════════════════════════
   SECTION: HERO
   ════════════════════════════════════════════════════ */
#section-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--hdr) + 40px) 48px 60px;
  position: relative;
  overflow: hidden;
}

/* decorative rings */
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 58%, rgba(58,123,213,.11) 0%, transparent 68%),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(200,169,110,.07) 0%, transparent 60%);
}
.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -44%);
  border-radius: 50%;
  border: 1px solid rgba(200,169,110,.06);
  animation: ringPulse 7s ease-in-out infinite;
}
.hero-ring:nth-child(1) { width: min(640px,85vw); height: min(640px,85vw); }
.hero-ring:nth-child(2) { width: min(440px,60vw); height: min(440px,60vw); border-color: rgba(200,169,110,.09); animation-delay: 2.5s; }
@keyframes ringPulse {
  0%, 100% { opacity: .5; transform: translate(-50%,-44%) scale(1); }
  50%       { opacity: 1;  transform: translate(-50%,-44%) scale(1.04); }
}

#section-hero > * { position: relative; z-index: 1; }

.hero-eyebrow { margin-bottom: 28px; animation: fadeUp .9s .1s both; }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 9.5vw, 128px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: -2px;
  animation: fadeUp .9s .25s both;
}
.hero-h1 em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--text2);
  max-width: 500px;
  margin: 28px auto 44px;
  font-weight: 300;
  line-height: 1.82;
  animation: fadeUp .9s .42s both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center;
  animation: fadeUp .9s .58s both;
}
.hero-stats {
  display: flex; gap: 54px;
  margin-top: 68px;
  padding-top: 42px;
  border-top: 1px solid var(--border);
  animation: fadeUp .9s .74s both;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.stat-lbl {
  font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted); margin-top: 7px;
}
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted);
  animation: fadeUp .9s .88s both, scrollBounce 2.6s 1.8s ease-in-out infinite;
}
.hero-scroll svg { width: 14px; stroke: var(--muted); fill: none; opacity: .5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ════════════════════════════════════════════════════
   SECTION: RENT A CAR
   ════════════════════════════════════════════════════ */
#section-rent {
  min-height: 100vh;
  padding-top: calc(var(--hdr) + 24px);
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}

.rent-head {
  text-align: center;
  padding: 0 48px 20px;
  flex-shrink: 0;
}
.rent-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 300; letter-spacing: -1px; line-height: 1;
  margin: 10px 0 8px;
}
.rent-h2 em { font-style: italic; color: var(--gold); }
.rent-desc { font-size: 14px; color: var(--text2); max-width: 420px; margin: 0 auto; }

/* filter bar */
.filter-bar {
  display: none;
}
.filter-btn {
  padding: 6px 18px; border-radius: 100px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--muted); font-weight: 400;
  transition: all .25s;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold); background: var(--gold-dim);
}

/* ── Slider ─────────────────────────────────────────── */
.slider-wrap {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* track that holds slides */
.slider-track {
  position: relative;
  width: 100%;
  /* Use calc to fill remaining vertical space minus surrounding UI */
  height: calc(100vh - var(--hdr) - 220px);
  min-height: 500px;
  flex-shrink: 0;
}

/* each slide */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(60px);
  transition: opacity .55s ease, transform .55s ease;
  display: flex;
  flex-direction: column;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.slide.exiting {
  opacity: 0;
  transform: translateX(-60px);
  pointer-events: none;
}

/* ambient glow */
/* glow lives only inside slide-body now (see slide-body::before) */
.slide-glow { display: none; }

/* slide name row */
.slide-name {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
  padding: 0 48px;
  width: 100%;
  pointer-events: none;
}
.slide-name h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 300; letter-spacing: -1px; line-height: 1.05;
  color: var(--text);
}
.slide-name p {
  font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--muted); margin-top: 5px;
}
.slide-price { display: none; }

/* slide body — single block, stage bg, everything absolute over car */
.slide-body {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  background: url('img/stage.png') center bottom / cover no-repeat;
  overflow: hidden;
}
/* per-vehicle colour glow — contained inside stage area only */
.slide-body::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 55%, var(--spot, rgba(58,123,213,.14)) 0%, transparent 70%);
}

/* spec columns — left and right of car */
.specs-col {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 5;
  width: 190px;
}
.specs-col.left  { left: 24px; }
.specs-col.right { right: 24px; align-items: flex-end; }

/* each spec item is a card box */
.spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(10,10,16,.78);
  border: 1px solid rgba(200,169,110,.2);
  border-radius: 10px;
  padding: 11px 13px;
  backdrop-filter: blur(10px);
  transition: border-color .25s;
  width: 100%;
}
.spec-item:hover { border-color: rgba(200,169,110,.45); }
.specs-col.right .spec-item {
  flex-direction: row-reverse;
  text-align: right;
}

.spec-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border: 1px solid rgba(200,169,110,.3);
  border-radius: 9px;
  background: rgba(10,10,15,.7);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.spec-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none; stroke-width: 1.5;
}
.spec-txt { font-size: 12px; color: var(--text); font-weight: 400; line-height: 1.3; text-align: left; }
.spec-txt small { display: block; font-size: 10px; color: var(--muted); font-weight: 300; margin-top: 1px; }

/* car image — centre column of the 3-col grid */
.car-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  padding-bottom: 10px;
  z-index: 3;
}
.car-stage img {
  max-height: 80%;
  max-width: 80%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 48px rgba(0,0,0,.9));
}

/* ground reflection line */
.car-stage::after {
  content: '';
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  z-index: 5;
}


/* ── Static slide action buttons — fixed bottom when rent section active ── */
.slide-btns-bar {
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 16px 0;
  flex-shrink: 0;
  position: fixed;
  bottom: 32px;
  left: 0;
  width: 100%;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
body.on-rent .slide-btns-bar {
  opacity: 1;
  pointer-events: all;
}

/* ── Arrows ──────────────────────────────────────────── */
.slider-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border: 1px solid var(--border2);
  border-radius: 50%;
  background: rgba(16,16,20,.88);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all .27s var(--ease);
  backdrop-filter: blur(6px);
}
.slider-arrow:hover {
  border-color: var(--gold);
  background: rgba(200,169,110,.1);
  transform: translateY(-50%) scale(1.1);
}
.slider-arrow svg { width: 22px; stroke: currentColor; fill: none; stroke-width: 2.2; }
.arrow-prev { left: 56px; }
.arrow-next { right: 56px; }

/* ── Counter + dots ──────────────────────────────────── */
.slider-controls {
  display: flex; align-items: center; gap: 18px;
  justify-content: center;
  padding: 12px 0 0;
  flex-shrink: 0;
}
.slider-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px; color: var(--muted);
}
.slider-count strong { color: var(--text); font-size: 19px; font-weight: 400; }

.dots { display: flex; gap: 7px; align-items: center; }
.dot {
  height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.14);
  cursor: pointer; transition: all .35s;
  width: 20px; border: none; padding: 0;
}
.dot.active { background: var(--gold); width: 34px; }

/* ════════════════════════════════════════════════════
   SECTION: USLUGE
   ════════════════════════════════════════════════════ */
#section-usluge {
  min-height: 100vh;
  padding: calc(var(--hdr) + 32px) 10vw 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 45%, var(--bg) 100%);
}

.sec-head { text-align: center; margin-bottom: 44px; }
.sec-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.8vw, 62px);
  font-weight: 300; letter-spacing: -1px; line-height: 1.05;
  margin: 11px 0 12px;
}
.sec-h2 em { font-style: italic; color: var(--gold); }
.sec-desc { font-size: 14px; color: var(--text2); max-width: 460px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(200,169,110,.2);
  border-radius: 14px;
  padding: 26px 22px 30px;
  transition: border-color .3s, border-left-color .3s, transform .3s, box-shadow .3s;
}
.svc-card:hover {
  border-color: rgba(200,169,110,.28);
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.28);
}
.svc-icon {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-icon svg { width: 21px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400;
  margin-bottom: 8px; color: var(--text);
}
.svc-card p { font-size: 13px; color: var(--text2); line-height: 1.72; }

/* ════════════════════════════════════════════════════
   SECTION: O NAMA  —  new layout
   ════════════════════════════════════════════════════ */
#section-onama {
  min-height: 100vh;
  padding: calc(var(--hdr) + 24px) 6vw 0;
  display: flex;
  align-items: stretch;
}

/* Main wrapper: grid with logo left, content right, stats bottom */
.onama-wrap {
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "left  right"
    "stats stats";
  gap: 0 64px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 0;
}

/* Left column: logo + location */
.onama-left {
  grid-area: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  padding-right: 40px;
  gap: 20px;
}
.onama-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  animation: logoPulse 5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { filter: drop-shadow(0 0 40px rgba(200,169,110,.1)); }
  50%      { filter: drop-shadow(0 0 80px rgba(200,169,110,.22)); }
}
.onama-tagline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.dot-sep { color: var(--gold); }

/* Right column */
.onama-right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0;
}
.onama-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1;
  margin: 14px 0 20px;
}
.onama-h2 em { font-style: italic; color: var(--gold); }
.onama-lead {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.82;
  max-width: 520px;
  margin-bottom: 28px;
}

/* Feature list */
.onama-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.onama-feats li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feat-check {
  color: var(--gold);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: .7;
}
.onama-feats li div { display: flex; flex-direction: column; gap: 2px; }
.onama-feats li strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .3px;
}
.onama-feats li span {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Stats bar — spans both columns at bottom */
.onama-stats {
  grid-area: stats;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.ostat {
  text-align: center;
  flex: 1;
}
.ostat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.ostat-lbl {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.ostat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════
   SECTION: KONTAKT
   ════════════════════════════════════════════════════ */
#section-kontakt {
  min-height: 100vh;
  padding: calc(var(--hdr) + 32px) 52px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kontakt-top { flex: 1; }
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 52px;
  max-width: 960px;
  width: 100%;
  margin: 44px auto 0;
}
.kontakt-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; margin-bottom: 26px;
}
.kitem {
  display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start;
}
.kitem-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border); border-radius: 9px;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kitem-icon svg { width: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.kitem-text label {
  display: block; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 4px;
}
.kitem-text span { font-size: 13.5px; color: var(--text2); line-height: 1.55; }

/* form */
.form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }
.fg input,
.fg textarea,
.fg select {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 15px;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 300;
  outline: none;
  transition: border-color .25s;
  width: 100%;
}
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--accent); }
.fg textarea { resize: vertical; min-height: 82px; }
.fg select option { background: var(--bg2); }

/* ── Footer ──────────────────────────────────────────── */
footer {
  padding: 28px 52px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  flex-shrink: 0;
}
footer p { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12px; color: var(--muted); transition: color .25s; }
.footer-links a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════
   MODAL
   ════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4,4,7,.88);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 20px;
  width: 100%; max-width: 860px;
  max-height: 88vh;
  display: flex; flex-direction: column;
  transform: translateY(26px) scale(.98);
  transition: transform .38s var(--ease);
  overflow: hidden;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }

.modal-head {
  padding: 26px 30px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-shrink: 0;
}
.mh-tag { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.mh-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300; letter-spacing: -.5px;
  color: var(--text); line-height: 1;
}
.mh-name small {
  font-size: 13px; font-family: 'Outfit', sans-serif;
  font-weight: 300; color: var(--muted); display: block; margin-top: 4px;
}
.modal-close {
  width: 33px; height: 33px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  transition: all .25s;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

.modal-tabs {
  display: flex; padding: 16px 30px 0;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.m-tab {
  padding: 9px 22px 13px;
  font-size: 11.5px; letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 400; color: var(--muted); position: relative; transition: color .25s;
}
.m-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform .3s;
}
.m-tab.active { color: var(--gold); }
.m-tab.active::after { transform: scaleX(1); }
.m-tab:hover { color: var(--text2); }

.modal-body { flex: 1; overflow-y: auto; padding: 22px 30px 28px; }
.modal-body::-webkit-scrollbar { width: 3px; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* gallery */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 9px;
}
.gal-item {
  border-radius: 9px; overflow: hidden;
  background: var(--bg2); aspect-ratio: 4/3; cursor: zoom-in;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-main { grid-column: 1/3; aspect-ratio: 16/9; }
.gal-placeholder {
  width: 100%; height: 100%; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
}
.gal-placeholder svg { width: 32px; opacity: .15; stroke: var(--text); fill: none; }
.gal-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

/* spec tab */
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.spec-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 9px; padding: 13px 16px;
}
.sc-label { font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.sc-val { font-size: 17px; font-weight: 500; color: var(--text); }
.sc-val span { font-size: 11.5px; font-weight: 300; color: var(--muted); }
.spec-feats { margin-top: 16px; }
.spec-feats h4 { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.feat-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.feat-tag {
  padding: 5px 13px; border-radius: 100px;
  border: 1px solid var(--border); font-size: 11.5px; color: var(--text2);
}

/* rez form */
.rez-form { display: flex; flex-direction: column; gap: 14px; }
.price-note {
  padding: 13px 16px;
  background: rgba(200,169,110,.07); border: 1px solid rgba(200,169,110,.2);
  border-radius: 9px;
}
.price-note p { font-size: 13px; color: var(--text2); line-height: 1.6; }
.price-note strong { color: var(--gold); }

/* ════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 899px) {
  :root { --hdr: 62px; }
  #header { padding: 0 22px; }
  nav { display: none; }
  .nav-burger { display: flex; }

  #section-hero { padding: calc(var(--hdr)+20px) 22px 50px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; }

  #section-rent { padding-top: calc(var(--hdr)+16px); padding-bottom: 24px; }
  .rent-head, .filter-bar { padding-left: 20px; padding-right: 20px; }

  .slide-body { /* no grid anymore — absolute positioned children */ }

  /* Mobile: spec-row wraps */
  .spec-row { flex-wrap: wrap; gap: 0; padding: 8px 8px; }
  .spec-item { max-width: 50%; min-width: 130px; padding: 6px 8px; }
  .spec-sep { display: none; }

  .slider-track { height: 420px; }
  .car-stage img { max-height: 200px; }

  .arrow-prev { left: 6px; }
  .arrow-next { right: 6px; }

  #section-usluge { padding: calc(var(--hdr)+20px) 22px 48px; justify-content: flex-start; }
  .services-grid { grid-template-columns: 1fr; }

  #section-onama { padding: calc(var(--hdr)+16px) 22px 0; }
  .onama-wrap { grid-template-columns: 1fr; grid-template-areas: "left" "right" "stats"; gap: 24px; }
  .onama-left { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 24px; flex-direction: row; justify-content: flex-start; gap: 20px; }
  .onama-logo { width: 70px; height: 70px; }
  .onama-h2 { font-size: clamp(32px, 8vw, 48px); }
  .onama-stats { padding: 20px 0; }
  .ostat-val { font-size: 30px; }

  #section-kontakt { padding: calc(var(--hdr)+20px) 22px 0; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 24px 22px; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gal-main { grid-column: 1/3; }
  .spec-grid { grid-template-columns: 1fr; }

  .modal { max-height: 92vh; }
  .modal-head { padding: 18px 18px 0; }
  .modal-tabs { padding: 12px 18px 0; }
  .modal-body { padding: 16px 18px 22px; }
  .mh-name { font-size: 26px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .slide-footer-btns { flex-direction: column; align-items: center; }
}
