:root {
  --red: #d90429; /* primārā sarkanā */
  --black: #0b0b0b; /* tumšais fons */
  --grey-900: #111318;
  --grey-700: #2a2e37;
  --grey-500: #6b7280;
  --white: #ffffff;
  --maxw: 1200px;
  --radius: 18px;
  --shadow-s: 0 4px 16px rgba(0,0,0,.15);
  --shadow-m: 0 10px 40px rgba(0,0,0,.3);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin:0; font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--white); background: linear-gradient(180deg, var(--black), #121212 40%, #171717); }
a { color: inherit; text-decoration: none; }
img { max-width:100%; display:block; border-radius: 12px; }

/* Header */
.topbar { position: sticky; top: 0; z-index: 1000; background: rgba(15,15,15,.7); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.06); }
.nav { max-width: var(--maxw); margin: 0 auto; display:flex; align-items:center; justify-content: space-between; padding: 14px 20px; }
.brand { display:flex; align-items:center; gap:12px; font-weight: 800; letter-spacing:.4px; }
/* Reverted original gradient logo */
.logo { width:40px; height:40px; border-radius: 12px; background: radial-gradient(120% 120% at 30% 20%, #ff3b3b, #9b0000); box-shadow: inset 0 2px 10px rgba(255,255,255,.08), 0 10px 25px rgba(217,4,41,.35); position: relative; }
.logo::after{ content:''; position:absolute; inset:6px; border-radius:8px; background: conic-gradient(from 200deg at 50% 50%, rgba(255,255,255,.25), rgba(255,255,255,0)); mix-blend-mode: screen; }
.nav a { opacity:.9; padding:8px 12px; border-radius:10px; transition: .25s ease; }
.nav a:hover { background: rgba(255,255,255,.06); opacity:1; }
.cta { background: var(--red); color: #fff; font-weight: 700; padding: 10px 16px; border-radius: 12px; box-shadow: var(--shadow-s); }

/* Hero */
.hero { position: relative; }
.hero-wrap { max-width: var(--maxw); margin: 0 auto; padding: 80px 20px 40px; display:grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items:center; }

/* kicker + inline location */
.kicker-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.kicker { color: #ffccd2; text-transform: uppercase; font-size: 12px; letter-spacing: .18em; }
.loc-pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px; font-size:12px; font-weight:700;
  background: linear-gradient(135deg, rgba(217,4,41,.18), rgba(255,255,255,.06));
  border:1px solid rgba(217,4,41,.5);
  box-shadow: 0 6px 20px rgba(217,4,41,.25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.loc-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 30px rgba(217,4,41,.3); }

h1 { font-size: clamp(34px, 5vw, 62px); margin: 10px 0 14px; line-height: 1.04; }
.lead { font-size: clamp(16px, 2.1vw, 20px); color:#e5e7eb; opacity:.9; }

/* Badges */
.badges { display:flex; gap: 14px; flex-wrap: wrap; margin: 18px 0 26px; }
.badge { border:1px solid rgba(255,255,255,.18); padding:8px 12px; border-radius: 999px; font-size: 13px; color:#f3f4f6; background: rgba(255,255,255,.04); display:inline-flex; align-items:center; gap:8px; }
.badge svg { display:block; }

.actions { display:flex; gap:12px; flex-wrap: wrap; }
.btn { padding: 12px 18px; border-radius: 14px; font-weight: 700; border:1px solid transparent; cursor: pointer; }
.btn-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-m); }
.btn-ghost { background: rgba(255,255,255,.06); color:#fff; border-color: rgba(255,255,255,.14); }
.hero-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); padding: 4px; border:1px solid rgba(255,255,255,.08); border-radius: var(--radius); box-shadow: var(--shadow-m); }
.hero-card img { aspect-ratio: 16/10; object-fit: cover; }

/* Split highlights */
.highlights { max-width:var(--maxw); margin: 10px auto 0; padding: 0 20px 60px; display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.chip { background: #141414; border:1px solid rgba(255,255,255,.06); padding: 14px 16px; border-radius: 16px; display:flex; gap:12px; align-items: center; }
.chip svg { flex: 0 0 22px; }

/* Services */
section { scroll-margin-top: 90px; }
.section { max-width: var(--maxw); margin: 0 auto; padding: 64px 20px; }
.section h2 { font-size: clamp(26px, 3.8vw, 42px); margin: 0 0 16px; }
.section p.sub { color: #d1d5db; margin: 0 0 24px; }

.grid { display:grid; gap: 18px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #121316; border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow-s); position: relative; }
.service { display:flex; gap:12px; align-items: flex-start; }
.service svg { flex:0 0 28px; }
.service h3 { margin: 4px 0 6px; font-size: 18px; }
.service p { margin: 0; color: #cbd5e1; font-size: 14px; }

/* Highlighted rental offer */
.service--highlight {
  background: linear-gradient(180deg, rgba(217,4,41,.25), rgba(217,4,41,.06));
  border: 1px solid rgba(217,4,41,.55);
  box-shadow: 0 12px 44px rgba(217,4,41,.35);
}
.service--highlight .pill-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-s);
}

/* Gallery */
.gallery img { aspect-ratio: 4/3; object-fit: cover; border:1px solid rgba(255,255,255,.08); transition: transform .3s ease, box-shadow .3s ease; }
.gallery img:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }

/* Contact */
.contact-wrap { display:grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.contact-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border:1px solid rgba(255,255,255,.08); border-radius: var(--radius); padding: 18px; }
.contact-list { list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.contact-item { display:flex; gap: 12px; align-items: center; background:#13151a; border:1px solid rgba(255,255,255,.08); padding: 12px; border-radius: 14px; }
.contact-item a { text-decoration: underline; text-underline-offset: 3px; }
.hours { display:grid; grid-template-columns: 1fr auto; gap:8px 12px; font-size: 14px; color:#e5e7eb; }
.map { border:0; width:100%; height: 360px; border-radius: 16px; filter: grayscale(.1) contrast(1.05); box-shadow: var(--shadow-s); }

/* Footer */
footer { border-top:1px solid rgba(255,255,255,.08); }
.footer { max-width: var(--maxw); margin: 0 auto; padding: 26px 20px; display:flex; gap:20px; justify-content: space-between; align-items:center; color:#cbd5e1; }

/* Responsive */
@media (max-width: 980px){
  .hero-wrap, .contact-wrap { grid-template-columns: 1fr; }
  .highlights { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .actions { flex-direction: column; }
}
