:root {
  --ore: #d95c1a;
  --ore-dark: #a83f0b;
  --ore-light: #f4863a;
  --steel: #1a2332;
  --steel-mid: #263348;
  --steel-lite: #3a4f6a;
  --chalk: #f6f4f0;
  --chalk-dark: #e2ddd7;
  --body-txt: #374151;
  --cap: "Barlow Condensed", sans-serif;
  --prose: "Inter", sans-serif;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  --r: 6px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--prose);
  color: var(--body-txt);
  background: var(--chalk);
  line-height: 1.65;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--r);
  font-family: var(--cap);
  font-size: 1rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
  border: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-primary {
  background: var(--ore);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ore-dark);
}
.btn-outline {
  background: transparent;
  color: var(--ore);
  border: 2px solid var(--ore);
}
.btn-outline:hover {
  background: var(--ore);
  color: #fff;
}
.section-label {
  font-family: var(--cap);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ore);
}
.section-title {
  font-family: var(--cap);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--steel);
  line-height: 1.1;
  margin-top: 6px;
}
.section-title span {
  color: var(--ore);
}

/* TOPBAR */
.topbar {
  background: var(--steel);
  color: #aab5c5;
  font-size: 0.8rem;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a {
  color: var(--ore-light);
}
.topbar a:hover {
  color: #fff;
}

/* NAV */
.nav {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 46px;
  border-radius: 4px;
  object-fit: contain;
}
.logo-text {
  font-family: var(--cap);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--steel);
  line-height: 1.1;
}
.logo-text small {
  font-family: var(--prose);
  font-size: 0.65rem;
  font-weight: 500;
  color: #6b7280;
  display: block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: var(--cap);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--steel-mid);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ore);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover {
  color: var(--ore);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-item {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  background: #fff;
  border-top: 3px solid var(--ore);
  box-shadow: var(--shadow);
  min-width: 230px;
  border-radius: 0 0 var(--r) var(--r);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s;
  z-index: 200;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li {
  list-style: none;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--body-txt);
  border-bottom: 1px solid var(--chalk-dark);
}
.dropdown a:hover {
  background: var(--chalk);
  color: var(--ore);
}
.dropdown a::after {
  display: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  background: var(--steel);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 0.28;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 35, 50, 0.5) 0%,
    rgba(26, 35, 50, 0.2) 60%,
    rgba(26, 35, 50, 0.3) 100%
  );
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-inner {
  max-width: 1420px;
  padding: 150px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 92, 26, 0.18);
  border: 1px solid var(--ore);
  color: var(--ore-light);
  font-family: var(--cap);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ore-light);
}
.hero h1 {
  font-family: var(--cap);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero h1 span {
  color: var(--ore-light);
}
.hero p {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 900px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.stat {
  border-left: 3px solid var(--ore);
  padding-left: 14px;
}
.stat-num {
  font-family: var(--cap);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
  padding: 0;
}
.slider-dot.active {
  background: var(--ore);
  transform: scale(1.3);
}

/* MARQUEE */
.marquee-wrap {
  background: var(--ore);
  overflow: hidden;
  padding: 10px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee-item {
  font-family: var(--cap);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  padding: 0 30px;
  white-space: nowrap;
  opacity: 0.92;
}
.marquee-item::before {
  content: "◆  ";
  font-size: 0.5rem;
  vertical-align: middle;
}

/* GALLERY STRIP */
.gallery-strip {
  background: var(--steel-mid);
  padding: 0 0 40px;
}
.gallery-strip-label {
  text-align: center;
  padding: 24px 0 16px;
  font-family: var(--cap);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #64748b;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.75;
  transition:
    opacity 0.2s,
    transform 0.25s;
  cursor: pointer;
}
.gallery-grid img:hover {
  opacity: 1;
  transform: scale(1.04);
}

/* ABOUT */
.about {
  padding: 96px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-main {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
}
.about-img-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 6px;
}
.about-img-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.about-accent {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 150px;
  background: var(--ore);
  color: #fff;
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-accent strong {
  font-family: var(--cap);
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.about-accent span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}
.about-body p {
  margin-bottom: 16px;
  color: var(--body-txt);
  font-size: 0.97rem;
}
.about-body ul {
  list-style: none;
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-body ul li {
  font-size: 0.88rem;
  padding: 8px 10px;
  background: var(--chalk-dark);
  border-radius: 4px;
  border-left: 3px solid var(--ore);
  font-weight: 500;
}

/* PRODUCTS */
.products {
  background: var(--steel);
  padding: 96px 0;
}
.products .section-title {
  color: #fff;
}
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--steel-mid);
  border-radius: var(--r);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  border: 1px solid var(--steel-lite);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  border-color: var(--ore);
}
.product-thumb {
  height: 190px;
  overflow: hidden;
  position: relative;
  background: var(--steel-lite);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-thumb img {
  transform: scale(1.07);
}
.product-thumb-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ore);
  color: #fff;
  font-family: var(--cap);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}
.product-body {
  padding: 18px 20px 22px;
}
.product-body h3 {
  font-family: var(--cap);
  font-size: 1.1rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 7px;
}
.product-body p {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
}
.product-body .enquire {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--cap);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ore-light);
  border-bottom: 1px solid var(--ore);
  padding-bottom: 1px;
  transition: color 0.2s;
}
.product-body .enquire:hover {
  color: #fff;
  border-color: #fff;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--r);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* WHY */
.why {
  padding: 96px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.why-card {
  background: #fff;
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  border-top: 4px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.why-card:hover {
  border-color: var(--ore);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.why-icon {
  width: 50px;
  height: 50px;
  background: var(--ore);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.why-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}
.why-card h3 {
  font-family: var(--cap);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.6;
}

/* CLIENTS */
.clients {
  background: var(--chalk-dark);
  padding: 64px 0;
}
.clients-title {
  text-align: center;
  margin-bottom: 36px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.client-chip {
  background: #fff;
  border: 1px solid var(--chalk-dark);
  border-radius: var(--r);
  padding: 14px 16px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--steel-mid);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.client-chip:hover {
  border-color: var(--ore);
  color: var(--ore);
}

/* CONTACT */
.contact {
  padding: 96px 0;
  background: var(--steel);
}
.contact .section-title {
  color: #fff;
}
.contact .section-label {
  color: var(--ore-light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}
.contact-info {
  color: #94a3b8;
}
.contact-info h3 {
  font-family: var(--cap);
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.info-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.info-icon {
  width: 38px;
  height: 38px;
  background: rgba(217, 92, 26, 0.18);
  border: 1px solid var(--ore);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--ore-light);
}
.info-text strong {
  display: block;
  color: #e2e8f0;
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.info-text span {
  font-size: 0.85rem;
  color: #94a3b8;
}
.contact-form {
  background: #fff;
  border-radius: var(--r);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--cap);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--steel);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--chalk-dark);
  border-radius: var(--r);
  font-family: var(--prose);
  font-size: 0.9rem;
  color: var(--body-txt);
  background: var(--chalk);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ore);
  box-shadow: 0 0 0 3px rgba(217, 92, 26, 0.12);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
#formSuccess {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 14px;
  border-radius: var(--r);
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #f5f6f7;
  color: #000000;
  font-size: 0.85rem;
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo-img {
  height: 40px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.footer-brand p {
  line-height: 1.65;
}
.footer h4 {
  font-family: var(--cap);
  font-size: 0.95rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}
.footer ul {
  list-style: none;
}
.footer ul li {
  margin-bottom: 9px;
}
.footer ul li a {
  color: #64748b;
  transition: color 0.2s;
}
.footer ul li a:hover {
  color: var(--ore-light);
}
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a {
  color: var(--ore-light);
}

/* MOBILE */
.mobile-menu {
  display: none;
  background: #fff;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--chalk-dark);
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-family: var(--cap);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--steel);
  border-bottom: 1px solid var(--chalk-dark);
}
.mobile-menu a:hover {
  color: var(--ore);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero-stats {
    gap: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .topbar .container {
    flex-direction: column;
    text-align: center;
  }
  .about-body ul {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
  * {
    transition-duration: 0s !important;
  }
}
