/* =====================================================================
   Las Vegas Bellman Cart — Design System
   Brand: Black / Gold / Red — Luxury hospitality equipment
   ===================================================================== */

/* ----------  Design Tokens  ---------- */
:root {
  /* Core palette */
  --black:        #0b0b0d;
  --black-2:      #111114;
  --black-3:      #17171c;
  --surface:      #1c1c22;
  --surface-2:    #23232b;
  --line:         rgba(201,162,75,0.18);
  --line-soft:    rgba(255,255,255,0.08);

  --gold:         #c9a24b;
  --gold-light:   #e7ca7f;
  --gold-deep:    #a07e2e;
  --red:          #d21f34;
  --red-deep:     #a8121f;

  --text:         #ece8df;
  --text-dim:     #b7b2a6;
  --muted:        #8d887d;

  /* Typography */
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-ui:   "Montserrat", var(--font-body);

  /* Metrics */
  --container: 1200px;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,0.7);
  --shadow-gold: 0 18px 50px -18px rgba(201,162,75,0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

/* ----------  Reset / Base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.7; }
.center .eyebrow::after { content: ""; width: 30px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 18px 0 0;
  color: #fff;
}
.section-title .accent { color: var(--gold); }
.section-lead {
  color: var(--text-dim);
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.05rem;
}
.center .section-lead { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 54px; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: 50px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(210,31,52,0.6);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(210,31,52,0.75); }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 55%, var(--gold-deep) 100%);
  color: #201a09;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); }
.btn--outline {
  border: 1.5px solid rgba(201,162,75,0.55);
  color: var(--text);
  background: rgba(255,255,255,0.02);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-3px); background: rgba(201,162,75,0.08); }
.btn--ghost { color: var(--gold); padding: 8px 0; }
.btn--ghost::after { content: "→"; transition: transform .3s var(--ease); }
.btn--ghost:hover::after { transform: translateX(6px); }
.btn--lg { padding: 18px 40px; font-size: 1rem; }
.btn--block { width: 100%; }

/* ----------  Header  ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,13,0.9);
  backdrop-filter: blur(14px);
  height: 70px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 40px -20px rgba(0,0,0,0.8);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: none; padding: 0 clamp(20px, 3vw, 48px); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 46px; height: 46px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__top { font-family: var(--font-ui); font-size: 1.4rem; letter-spacing: 0.1em; color: var(--gold); font-weight: 800; line-height: 1; }
.brand__name { font-family: var(--font-ui); font-size: 0.72rem; font-weight: 700; color: var(--red); letter-spacing: 0.26em; margin-top: 4px; text-transform: uppercase; }
.site-header.scrolled .brand__top { font-size: 1.2rem; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > a, .nav-item > a {
  font-family: var(--font-ui); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-dim); padding: 10px 15px; border-radius: 8px; position: relative;
  transition: color .25s; display: inline-flex; align-items: center; gap: 7px;
}
.nav > a::after, .nav-item > a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav > a:hover::after, .nav > a.active::after, .nav-item > a:hover::after, .nav-item > a.active::after { transform: scaleX(1); }

/* Dropdowns */
.nav-item { position: relative; }
.caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: 0.75; }
.nav-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px; padding: 10px;
  background: rgba(14,11,9,0.98); backdrop-filter: blur(14px); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: .25s var(--ease); z-index: 60;
}
.nav-item.has-menu:hover .nav-menu { opacity: 1; visibility: visible; transform: translateY(6px); }
.nav-menu a { padding: 10px 14px; border-radius: 8px; font-family: var(--font-ui); font-size: 0.84rem; color: var(--text-dim); }
.nav-menu a::after { display: none; }
.nav-menu a:hover { background: rgba(201,162,75,0.1); color: var(--gold-light); }

.header-phone { display: flex; align-items: center; gap: 11px; }
.header-phone__icon {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: rgba(201,162,75,0.12); border: 1px solid var(--line);
}
.header-phone__icon svg { width: 18px; height: 18px; color: var(--gold); }
.header-phone__txt { display: flex; flex-direction: column; line-height: 1.2; }
.header-phone__num { font-family: var(--font-ui); font-weight: 700; font-size: 1rem; color: var(--gold-light); }
.header-phone:hover .header-phone__num { color: #fff; }
.header-phone__label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px auto; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------  Hero Banner  ---------- */
.hero { padding: calc(var(--header-h) + 20px) 0 44px; background: var(--black); }
.hero .container { max-width: 1300px; }
.hero-banner {
  position: relative; border-radius: 22px; overflow: hidden; min-height: 668px;
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid var(--line); box-shadow: var(--shadow); background: #140d0a;
}
.hero-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-banner__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(9,6,5,0.95) 0%, rgba(9,6,5,0.85) 32%, rgba(9,6,5,0.4) 56%, rgba(9,6,5,0.12) 100%),
    linear-gradient(0deg, rgba(9,6,5,0.7), transparent 42%);
}
.hero-banner__cart {
  position: absolute; right: 4.5%; top: 46%; transform: translateY(-50%);
  height: 74%; width: auto; z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 34px rgba(231,180,95,0.2));
}
.hero-banner__body { position: relative; z-index: 3; padding: 40px 48px 22px; flex: 1; display: flex; align-items: center; }
.hero-banner__content { max-width: 730px; }

.hero__eyebrow { font-family: var(--font-ui); text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.74rem; font-weight: 600; color: var(--gold-light); }
.hero__title { font-family: var(--font-ui); text-transform: uppercase; margin: 14px 0 0; }
.hero__title-main { display: block; font-weight: 800; letter-spacing: 0.004em; color: #fff; font-size: clamp(2.6rem, 5vw, 4.7rem); line-height: 0.95; text-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.hero__title-sub { display: block; font-weight: 800; letter-spacing: 0.02em; margin-top: 0.28rem; font-size: clamp(1.5rem, 3.1vw, 2.9rem); line-height: 1; background: linear-gradient(100deg, var(--gold-light), var(--gold) 55%, var(--gold-deep)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__rule { display: block; width: 92px; height: 3px; margin: 18px 0 0; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; }
.hero__sub { color: var(--text-dim); font-size: 1.02rem; margin-top: 20px; max-width: 440px; }

.hero__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 30px; max-width: 720px; }
.hfeat { display: flex; gap: 10px; align-items: flex-start; position: relative; }
.hfeat + .hfeat::before { content: ""; position: absolute; left: -12px; top: 2px; bottom: 2px; width: 1px; background: var(--line-soft); }
.hfeat svg { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 1px; }
.hfeat strong { display: block; font-family: var(--font-ui); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: #fff; margin-bottom: 4px; line-height: 1.15; }
.hfeat span { font-size: 0.74rem; color: var(--muted); line-height: 1.4; white-space: nowrap; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }
.hero-btn { padding: 13px 22px; border-radius: 10px; }
.hero-btn svg { width: 20px; height: 20px; }
.hero-btn__stack { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.12; text-align: left; }
.hero-btn__stack strong { font-weight: 700; font-size: 0.9rem; }
.hero-btn__stack small { font-size: 0.72rem; opacity: 0.82; }

.hero-trust {
  position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  padding: 20px 40px; background: rgba(8,5,4,0.74); backdrop-filter: blur(4px); border-top: 1px solid var(--line);
}
.htrust { display: flex; gap: 12px; align-items: center; justify-content: center; position: relative; }
.htrust + .htrust::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: var(--line-soft); }
.htrust svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.htrust strong { display: block; font-family: var(--font-ui); font-size: 0.9rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; }
.htrust span { font-size: 0.76rem; color: var(--muted); }

/* ----------  Hero: full-width photo background + live content  ---------- */
.hero--live { padding: var(--header-h) 0 0; background: var(--black); }
.hero-live { position: relative; width: 100%; overflow: hidden; border-bottom: 1px solid var(--line); background: #0a0706; }
.hero-live__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; z-index: 0; }
.hero-live__inner {
  position: relative; z-index: 2; display: flex; align-items: center;
  min-height: 648px; padding: 44px clamp(24px, 5vw, 76px) 116px;
}
.hero-live__content { max-width: 700px; width: 100%; }
.hero--live .hero-trust {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px clamp(24px, 5vw, 76px);
  background: linear-gradient(0deg, rgba(6,4,3,0.92), rgba(6,4,3,0.62));
}
@media (max-width: 980px) {
  .hero-live__bg { object-position: 74% 42%; }
  .hero-live__inner { min-height: 560px; padding: 40px 24px 128px; background: linear-gradient(90deg, rgba(9,6,5,0.92) 0%, rgba(9,6,5,0.72) 55%, rgba(9,6,5,0.4) 100%); }
  .hero-live__content { max-width: none; }
}
@media (max-width: 640px) {
  .hero-live__inner { padding: 32px 20px 150px; }
}

/* ----------  Marquee / Trusted  ---------- */
.trusted { padding: 46px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--black-2); }
.trusted__head { text-align: center; color: var(--muted); font-family: var(--font-ui); font-size: 0.76rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 28px; }
.logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 20px 46px; }
.logos span {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 700; color: var(--text-dim);
  letter-spacing: 0.04em; opacity: 0.7; transition: opacity .3s, color .3s;
}
.logos span:hover { opacity: 1; color: var(--gold-light); }
.trusted__note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 26px; max-width: 720px; margin-left: auto; margin-right: auto; }

/* ----------  Cards (What We Do)  ---------- */
.cards { grid-template-columns: repeat(3, 1fr); }
.card {
  background: linear-gradient(180deg, var(--surface), var(--black-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px 30px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--red)); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(201,162,75,0.1); border: 1px solid var(--line);
}
.card__icon svg { width: 28px; height: 28px; color: var(--gold); }
.card h3 { font-size: 1.35rem; color: #fff; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.96rem; margin-bottom: 18px; }

/* ----------  Product cards  ---------- */
.products { grid-template-columns: repeat(3, 1fr); }
.product {
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  background: var(--black-2); transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.product:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: var(--shadow); }
.product__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.product__media img, .placeholder-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product:hover .product__media img { transform: scale(1.06); }
.product__tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  background: rgba(11,11,13,0.7); color: var(--gold-light); padding: 6px 12px; border-radius: 50px; border: 1px solid var(--line);
}
.product__body { padding: 24px 24px 28px; }
.product__body h3 { font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.product__body p { color: var(--text-dim); font-size: 0.92rem; margin-bottom: 18px; }
.product__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product__price { font-family: var(--font-head); color: var(--gold); font-size: 1.05rem; }

/* Branded SVG placeholder look */
.placeholder-img {
  display: grid; place-items: center; position: relative;
  background:
    radial-gradient(70% 60% at 50% 35%, rgba(201,162,75,0.18), transparent 60%),
    linear-gradient(160deg, #1b1720, #0e0e12);
}
.placeholder-img svg { width: 46%; height: auto; opacity: 0.9; }
.placeholder-img object { pointer-events: none; }
.placeholder-img .cap {
  position: absolute; bottom: 12px; font-family: var(--font-ui); font-size: 0.66rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}

/* ----------  Why Choose (two column)  ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why__media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 5/6; box-shadow: var(--shadow); }
.why__badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: rgba(11,11,13,0.82); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; backdrop-filter: blur(6px);
}
.why__badge .k { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); }
.why__badge .l { font-size: 0.78rem; color: var(--text-dim); }
.why__list { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 26px; margin-top: 32px; }
.why__item { display: flex; gap: 14px; }
.why__item .ic { width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center; background: rgba(201,162,75,0.1); border: 1px solid var(--line); }
.why__item .ic svg { width: 20px; height: 20px; color: var(--gold); }
.why__item h4 { font-family: var(--font-ui); font-size: 0.98rem; color: #fff; font-weight: 600; margin-bottom: 3px; }
.why__item p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }

/* ----------  Before / After  ---------- */
.ba-wrap { max-width: 900px; margin: 0 auto; }
.ba {
  position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow); user-select: none; cursor: ew-resize;
}
.ba__layer { position: absolute; inset: 0; }
.ba__layer .placeholder-img { border-radius: 0; }
.ba__after { clip-path: inset(0 0 0 50%); }
.ba__label {
  position: absolute; top: 16px; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 50px; background: rgba(11,11,13,0.75); border: 1px solid var(--line); z-index: 3;
}
.ba__label--before { left: 16px; color: var(--text-dim); }
.ba__label--after { right: 16px; color: var(--gold-light); }
.ba__handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: var(--gold); z-index: 4; transform: translateX(-50%); }
.ba__grip { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; color: #201a09; font-weight: 700; box-shadow: var(--shadow-gold); }
.ba__thumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.ba__thumb { font-family: var(--font-ui); font-size: 0.82rem; padding: 9px 18px; border-radius: 50px; border: 1px solid var(--line-soft); color: var(--text-dim); transition: .3s; }
.ba__thumb.active, .ba__thumb:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,75,0.08); }

/* ----------  Testimonials  ---------- */
.tst { grid-template-columns: repeat(3, 1fr); }
.tst__card { background: linear-gradient(180deg, var(--surface), var(--black-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 32px 30px; position: relative; }
.tst__stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 16px; }
.tst__quote { font-family: var(--font-head); font-style: italic; font-size: 1.18rem; color: var(--text); line-height: 1.5; margin-bottom: 22px; }
.tst__who { display: flex; align-items: center; gap: 14px; }
.tst__avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); display: grid; place-items: center; color: #201a09; font-family: var(--font-head); font-weight: 700; }
.tst__name { font-family: var(--font-ui); font-weight: 600; color: #fff; font-size: 0.92rem; }
.tst__role { font-size: 0.8rem; color: var(--muted); }

/* ----------  Process  ---------- */
.process { position: relative; }
.steps { grid-template-columns: repeat(4, 1fr); }
.steps::before { content: ""; position: absolute; top: 44px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); }
.step { text-align: center; position: relative; }
.step__num {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 22px; display: grid; place-items: center;
  font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); font-weight: 700;
  background: var(--black-2); border: 1px solid var(--line); position: relative; z-index: 2;
}
.step:hover .step__num { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.step h4 { color: #fff; font-family: var(--font-ui); font-size: 1.05rem; margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 0.9rem; }

/* ----------  Stats  ---------- */
.stats-band { background: linear-gradient(180deg, var(--black-2), var(--black)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.stats { grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold); font-weight: 700; }
.stat__num .unit { color: var(--red); }
.stat__label { color: var(--text-dim); font-family: var(--font-ui); font-size: 0.9rem; letter-spacing: 0.03em; margin-top: 6px; }

/* ----------  Recent projects gallery  ---------- */
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.tile { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); aspect-ratio: 4/3; }
.tile .placeholder-img { transition: transform .6s var(--ease); }
.tile:hover .placeholder-img { transform: scale(1.06); }
.tile__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(6,6,8,0.9)); opacity: 1; z-index: 2;
}
.tile__cat { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.tile__title { font-family: var(--font-head); font-size: 1.2rem; color: #fff; margin-top: 4px; }
.tile__link { margin-top: 10px; font-family: var(--font-ui); font-size: 0.82rem; color: var(--gold-light); opacity: 0; transform: translateY(8px); transition: .35s var(--ease); }
.tile:hover .tile__link { opacity: 1; transform: translateY(0); }

/* ----------  FAQ  ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line-soft); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; font-family: var(--font-ui); font-weight: 600; font-size: 1.05rem; color: #fff; }
.faq__q .plus { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--gold); transition: .3s; position: relative; }
.faq__q .plus::before, .faq__q .plus::after { content: ""; position: absolute; background: var(--gold); border-radius: 2px; }
.faq__q .plus::before { width: 12px; height: 2px; }
.faq__q .plus::after { width: 2px; height: 12px; transition: transform .3s; }
.faq.open .plus::after { transform: rotate(90deg) scaleX(0); }
.faq.open .plus { background: rgba(201,162,75,0.12); border-color: var(--gold); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { color: var(--text-dim); padding: 0 4px 24px; max-width: 700px; }

/* ----------  Service Area / Map  ---------- */
.map-band { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.map-visual { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; position: relative; box-shadow: var(--shadow); background: linear-gradient(160deg, #14131a, #0c0c10); }
.map-visual svg { width: 100%; height: 100%; }
.map-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chip { font-family: var(--font-ui); font-size: 0.84rem; padding: 9px 18px; border-radius: 50px; border: 1px solid var(--line); color: var(--gold-light); background: rgba(201,162,75,0.06); display: inline-flex; gap: 8px; align-items: center; }
.chip svg { width: 15px; height: 15px; }

/* ----------  Final CTA  ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  position: relative; z-index: 2; border-radius: 24px; padding: 68px 40px; text-align: center;
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201,162,75,0.18), transparent 60%),
    linear-gradient(135deg, #17131b, #0d0d10);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.cta-inner h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); color: #fff; }
.cta-inner h2 .accent { color: var(--gold); }
.cta-inner p { color: var(--text-dim); max-width: 560px; margin: 18px auto 32px; font-size: 1.08rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ----------  Footer  ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line); padding: 72px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-about { color: var(--text-dim); font-size: 0.94rem; max-width: 320px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line-soft); display: grid; place-items: center; color: var(--text-dim); transition: .3s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--font-ui); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--text-dim); font-size: 0.92rem; transition: color .25s, padding .25s; }
.footer-col a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; color: var(--text-dim); font-size: 0.92rem; margin-bottom: 14px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--muted); font-size: 0.84rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 22px; }

/* ----------  Page hero (interior pages)  ---------- */
.page-hero {
  padding: calc(var(--header-h) + 70px) 0 70px; text-align: center; position: relative;
  background:
    radial-gradient(900px 500px at 50% -10%, rgba(201,162,75,0.14), transparent 60%),
    linear-gradient(180deg, #0d0d10, #0b0b0d);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); color: #fff; margin-top: 16px; }
.page-hero h1 .accent { color: var(--gold); }
.page-hero p { color: var(--text-dim); max-width: 620px; margin: 18px auto 0; font-size: 1.06rem; }
.breadcrumb { font-family: var(--font-ui); font-size: 0.82rem; color: var(--muted); letter-spacing: 0.04em; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); }

/* ----------  Forms (Contact)  ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.info-card { background: linear-gradient(180deg, var(--surface), var(--black-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 32px; margin-bottom: 22px; }
.info-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 18px; }
.info-row { display: flex; gap: 16px; margin-bottom: 20px; }
.info-row .ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: rgba(201,162,75,0.1); border: 1px solid var(--line); }
.info-row .ic svg { width: 20px; height: 20px; color: var(--gold); }
.info-row .l { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.info-row .v { color: #fff; font-family: var(--font-ui); font-weight: 500; }
.info-row .v:hover { color: var(--gold-light); }

.form { background: linear-gradient(180deg, var(--surface), var(--black-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-ui); font-size: 0.82rem; color: var(--text-dim); margin-bottom: 8px; letter-spacing: 0.03em; }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; background: var(--black); border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 14px 16px; color: var(--text); font-family: var(--font-body); font-size: 0.95rem; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,0.12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c9a24b' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 14px; }
.form-success { display: none; padding: 16px 18px; border-radius: 10px; background: rgba(201,162,75,0.12); border: 1px solid var(--gold); color: var(--gold-light); font-family: var(--font-ui); font-size: 0.9rem; margin-bottom: 20px; }
.form-success.show { display: block; }

/* ----------  Misc content  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.prose p { color: var(--text-dim); margin-bottom: 16px; }
.value-list { display: grid; gap: 16px; margin-top: 24px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.value-list svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.filter-btn { font-family: var(--font-ui); font-size: 0.84rem; padding: 10px 20px; border-radius: 50px; border: 1px solid var(--line-soft); color: var(--text-dim); transition: .3s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(201,162,75,0.08); }

/* ----------  Reveal animation  ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ----------  Responsive  ---------- */
@media (max-width: 1100px) {
  .hero-banner__cart { opacity: 0.32; right: -4%; height: 68%; }
  .hero-banner__scrim { background: linear-gradient(100deg, rgba(9,6,5,0.94) 0%, rgba(9,6,5,0.8) 60%, rgba(9,6,5,0.55) 100%), linear-gradient(0deg, rgba(9,6,5,0.7), transparent 42%); }
  .hero__features { grid-template-columns: repeat(2, 1fr); gap: 22px 30px; }
  .hfeat:nth-child(odd)::before { display: none; }
  .hfeat:nth-child(even)::before { left: -15px; }
}
@media (max-width: 1024px) {
  .why, .map-band, .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .products, .tst, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .htrust:nth-child(3)::before { display: none; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed; top: 70px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    background: rgba(11,9,7,0.99); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; transform: translateY(-120%); transition: transform .4s var(--ease); z-index: 90;
  }
  .nav.open { display: flex; transform: translateY(0); }
  .nav > a, .nav-item > a { padding: 15px 8px; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; width: 100%; justify-content: space-between; }
  .nav a::after { display: none; }
  .nav-item { width: 100%; }
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none; display: none; box-shadow: none; border: none; background: transparent; padding: 0 0 8px 16px; min-width: 0; }
  .nav-item.open .nav-menu { display: grid; }
  .hero-banner__body { padding: 34px 26px 18px; }
  .hero-trust { padding: 18px 22px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .cards, .products, .tst, .gallery-grid, .stats, .steps, .why__list, .form-row, .footer-grid { grid-template-columns: 1fr; }
  .stats { gap: 32px; }
  .hero__features { grid-template-columns: 1fr; }
  .hfeat::before { display: none !important; }
  .hero-trust { grid-template-columns: 1fr; text-align: left; }
  .htrust { justify-content: flex-start; }
  .htrust + .htrust::before { display: none; }
  .hero__actions .hero-btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { padding: 48px 24px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
