:root {
  --bg: #0c0d10;
  --bg-2: #14161c;
  --bg-3: #1b1e27;
  --line: rgba(255,255,255,.08);
  --text: #ece8e1;
  --muted: #9a948a;
  --steel: #c4b8a5;
  --accent: #d4a017;
  --accent-2: #e8c15a;
  --ok: #8fbf7a;
  --radius: 18px;
  --max: 1160px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.topbar a:hover { color: var(--accent-2); }

header.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(12,13,16,.82);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 58px !important;
  max-height: 58px !important;
  max-width: 240px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
}
.logo span { color: var(--accent); }
.menu { display: flex; gap: 22px; align-items: center; font-size: 14px; color: var(--steel); }
.menu a:hover { color: #fff; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 14px;
}
.btn-gold { background: linear-gradient(180deg, var(--accent-2), var(--accent)); color: #1a1404; }
.btn-gold:hover { filter: brightness(1.06); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--steel); }

.hero {
  position: relative;
  padding: 90px 0 70px;
  min-height: 52vh;
  background:
    linear-gradient(180deg, rgba(8,9,12,.72) 0%, rgba(8,9,12,.55) 45%, rgba(12,13,16,.92) 100%),
    url("../img/hero-bg.jpg") center 45% / cover no-repeat;
}
.kicker {
  color: var(--accent-2);
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 14px;
}
h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 16ch;
}
.lead { margin-top: 18px; max-width: 54ch; color: var(--muted); font-size: 18px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 36px 0 70px;
}
.card-dir {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.card-dir::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(8,8,10,.88) 100%),
    repeating-linear-gradient(-45deg, transparent, transparent 12px, rgba(255,255,255,.015) 12px, rgba(255,255,255,.015) 13px);
}
.card-dir.metal {
  background:
    linear-gradient(180deg, rgba(10,12,16,.25) 10%, rgba(8,8,10,.88) 100%),
    url("../img/20250402_175413.jpg") center/cover no-repeat;
}
.card-dir.build {
  background:
    linear-gradient(180deg, rgba(10,12,16,.35) 10%, rgba(8,8,10,.9) 100%),
    url("../img/hero-bg.jpg") center/cover no-repeat;
}
.card-dir > * { position: relative; z-index: 1; }
.tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.card-dir h2 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.03em; margin-bottom: 10px; }
.card-dir p { color: #c9c2b6; margin-bottom: 22px; max-width: 36ch; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #111;
  aspect-ratio: 16 / 10;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.empty-gal {
  margin-top: 24px;
  padding: 40px 24px;
  border: 1px dashed var(--line);
  border-radius: 18px;
  color: var(--muted);
  text-align: center;
}

.section { padding: 20px 0 80px; }
.section h3 { font-size: 28px; letter-spacing: -.02em; margin-bottom: 10px; }
.grid-3, .grid-4 { display: grid; gap: 16px; margin-top: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.box {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.box h4 { margin-bottom: 8px; font-size: 18px; }
.box p { color: var(--muted); font-size: 14px; }

.cta {
  background: linear-gradient(180deg, #1c160c, #12100c);
  border: 1px solid rgba(212,160,23,.25);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta p { color: var(--muted); margin-top: 8px; }

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 50px;
  color: var(--muted);
  font-size: 14px;
}
.foot { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 24px; }
footer a:hover { color: #fff; }

.page-hero { padding: 56px 0 28px; }
.page-hero h1 { max-width: 18ch; }
.list { margin: 16px 0 0 18px; color: var(--muted); }
.list li { margin: 6px 0; }

form { display: grid; gap: 12px; margin-top: 20px; max-width: 520px; }
input, textarea, select {
  width: 100%;
  background: #0e1014;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 120px; resize: vertical; }

@media (max-width: 860px) {
  .split, .grid-3, .grid-4, .foot, .cta { grid-template-columns: 1fr; }
  .cta { display: block; }
  .menu { display: none; }
  h1 { max-width: none; }
  .card-dir { min-height: 360px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}


.socials { display:flex; gap:8px; align-items:center; }
.soc {
  width:44px; height:44px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  border:0;
  color:#fff;
  font-weight:800;
  line-height:1;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.soc svg { width:22px; height:22px; display:block; }
.soc.fb { background:#1877F2; }
.soc.tik { background:#111; }
.soc.map { background:#34A853; }
.soc:hover { filter: brightness(1.12); transform: translateY(-1px); }
.map-wrap {
  margin: 28px 0 36px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
}
.map-wrap iframe { width:100%; height:320px; border:0; display:block; }
@media (max-width: 800px) {
  .nav-in { flex-wrap: wrap; }
  .socials { order: 3; }
}


.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}
.chatbar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat {
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,.4);
}
.chat svg { width: 26px; height: 26px; }
.chat.wa { background: #25D366; }
.chat.vb { background: #7360F2; }
.chat:hover { transform: scale(1.06); }

@media (max-width: 860px) {
  .menu-btn { display: inline-flex; }
  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 12px;
  }
  .menu.open { display: flex; }
  .nav-in { flex-wrap: wrap; }
  .socials { order: 4; }
  .btn-gold { order: 2; }
  .menu-btn { order: 3; margin-left: auto; }
}
