:root {
  --bg: #0b0b0b; /* primary background */
  --panel: #121212; /* secondary panels */
  --white: #ffffff; /* text */
  --muted: #cfcfcf; /* muted text */
  --gold: #d4af37; /* main gold accent */
  --gold-2: #b98f14; /* deeper gold */
  --red: #b30000; /* deep red for CTA */
  --glass: rgba(255, 255, 255, 0.03);
  --radius: 14px;
  --max-width: 1200px;
  --container-pad: 28px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

/* =========  GLOBAL  ========= */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: radial-gradient(
      1200px 600px at 90% 10%,
      rgba(213, 175, 55, 0.06),
      transparent 10%
    ),
    var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* =========  NAV  ========= */
header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: linear-gradient(
    180deg,
    rgba(11, 11, 11, 0.9),
    rgba(11, 11, 11, 0.65)
  );
  backdrop-filter: blur(6px);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.logo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 6px 30px rgba(177, 126, 12, 0.12);
}
.logo svg {
  height: 26px;
  width: 26px;
}
.brand h1 {
  font-size: 18px;
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.slogan {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
nav a:hover {
  color: var(--gold);
}

.cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn {
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
}
.btn.gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  color: #081018;
  border: 0;
}
.btn.red {
  background: var(--red);
  border: 0;
  color: var(--white);
}

/* mobile hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
}

/* side drawer */
.drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -40px 0 80px rgba(0, 0, 0, 0.7);
  transition: right 0.32s cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 140;
  padding: 28px;
}
.drawer.open {
  right: 0;
}
.drawer .close {
  display: flex;
  justify-content: flex-end;
}
.drawer nav {
  margin-top: 18px;
}
.drawer nav a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.drawer nav a:hover {
  color: var(--gold);
}

/* =========  HERO  ========= */
.hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 40px;
  align-items: center;
  padding: 50px 0 0;
}
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 13px;
}
.hero h2 {
  font-size: 40px;
  line-height: 1.02;
  margin: 18px 0 10px;
  font-weight: 800;
}
.hero p.lead {
  color: var(--muted);
  max-width: 560px;
}
.hero .actions {
  margin-top: 26px;
  display: flex;
  gap: 14px;
}

/* right side image stack */
.stack {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stack .card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-10deg);
}
.stack .card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack .c1 {
  width: 320px;
  height: 160px;
  right: 10px;
  top: 12px;
}
.stack .c2 {
  width: 300px;
  height: 180px;
  right: 46px;
  bottom: 10px;
  transform: rotate(6deg);
}
.stack .c3 {
  width: 240px;
  height: 120px;
  left: 10px;
  top: 60px;
  transform: rotate(-18deg);
}

/* =========  SECTIONS  ========= */
section {
  padding: 72px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.grid {
  display: grid;
  gap: 24px;
}
.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.card-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
}
.about .stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat h3 {
  margin: 0;
  color: var(--gold);
  font-size: 28px;
}
.stat p {
  margin: 0;
  color: var(--muted);
}

/* Services */
.service {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.service .icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(213, 175, 55, 0.14),
    rgba(255, 255, 255, 0.02)
  );
  display: grid;
  place-items: center;
}
.service h4 {
  margin: 0;
}

/* Products / bars */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: left;
}
.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}

.person {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Testimonials */
.testi {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.testi .item {
  background: var(--panel);
  padding: 18px;
  border-radius: 10px;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
}
form {
  display: grid;
  gap: 12px;
}
input,
textarea,
select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px;
  border-radius: 8px;
  color: var(--white);
}
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
footer {
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.left2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}
/* Responsive adjustments */
.card-panel.service.sss{
  max-width: 300px
}
.muted.sss {
  margin-top: 5px;
}
@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 360px;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .contact {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .wrap {
    padding: 24px;
  }
  nav ul {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 36px 0;
  }
  .stack {
    height: 260px;
  }
  .stack .card {
    transform: none;
    position: relative;
    width: 100%;
    height: 86px;
    border-radius: 10px;
  }
  .stack .c1,
  .stack .c2,
  .stack .c3 {
    position: relative;
    width: 100%;
    height: 86px;
  }
  .hero h2 {
    font-size: 28px;
  }
  .cols-3 {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 666px) {
  .left2 {
    justify-content: left;
  }
  .card-panel.service.sss{
    width: 100%;
    max-width: initial;
  }
}

/* small helpers */
.muted {
  color: var(--muted);
}
.kicker {
  color: var(--gold);
  font-weight: 700;
}
.center {
  display: grid;
  place-items: center;
}

/* tiny interactions */
.fade-up {
  opacity: 0;
  transform: translateY(6px);
  animation: fadeUp 0.6s forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}
