:root {
  --charcoal: #2a2a2a;
  --rust: #b7410e;
  --steel: #71797e;
  --tan: #d2b48c;
  --sand: #e7d4b7;
  --ink: #161616;
  --white: #f5f1eb;
  --shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
  --radius: 24px;
  --border: 1px solid rgba(210, 180, 140, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  background:
    linear-gradient(rgba(22, 22, 22, 0.92), rgba(22, 22, 22, 0.96)),
    linear-gradient(90deg, rgba(183, 65, 14, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(113, 121, 126, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 50%, transparent 50%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 50%, transparent 50%),
    linear-gradient(135deg, #343434, #232323 58%, #1d1d1d);
  background-size: auto, 120px 120px, 40px 40px, 48px 48px, 48px 48px, auto;
  color: var(--white);
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-frame {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 48px;
}

.topbar,
.hero,
.stats-grid,
.products-grid,
.split-layout,
.why-us-grid,
.footer {
  position: relative;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: var(--border);
  border-radius: 20px;
  background: rgba(42, 42, 42, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--rust), #7f2d08);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-block h1,
.section-heading h2,
.hero-copy h2,
.hero-card h3,
.product-head h3,
.split-layout h2,
.feature-list h3,
.why-us-grid h3,
.footer h2 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.brand-block h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--tan);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 700;
}

.nav-links a {
  color: #ddd4ca;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--tan);
}

.panel {
  background: linear-gradient(180deg, rgba(55, 55, 55, 0.92), rgba(32, 32, 32, 0.94));
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.rivets::before,
.rivets::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #bfc5c9, #5a5f63 68%, #2a2d30);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.22);
}

.rivets::before {
  top: 14px;
  right: 14px;
}

.rivets::after {
  bottom: 14px;
  left: 14px;
}

.stitch-border {
  border: 2px dashed rgba(210, 180, 140, 0.36);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: clamp(24px, 5vw, 42px);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 40%, rgba(183, 65, 14, 0.12) 100%);
  pointer-events: none;
}

.hero-copy,
.hero-card,
.product-card,
.stat,
.split-layout,
.footer,
.why-us-grid article {
  position: relative;
  z-index: 1;
}

.hero-copy h2 {
  font-size: clamp(3rem, 8vw, 5.4rem);
  line-height: 0.92;
  margin-bottom: 18px;
}

.hero-copy h2 span {
  color: var(--rust);
}

.hero-text,
.product-content p,
.split-layout p,
.why-us-grid p,
.footer p,
.stat span {
  color: #d9d1c7;
  line-height: 1.8;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--rust), #8d3209);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--tan);
  border: 1px solid rgba(210, 180, 140, 0.35);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-points li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(113, 121, 126, 0.14);
  border: 1px dashed rgba(210, 180, 140, 0.28);
  font-weight: 700;
}

.hero-card {
  padding: 18px;
  background: rgba(24, 24, 24, 0.8);
  border-radius: 22px;
  align-self: center;
}

.hero-card-label {
  margin: 0 0 14px;
  color: var(--tan);
  font-weight: 800;
}

.hero-card img {
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-info {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
}

.hero-card h3 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.hero-card strong,
.product-meta span,
.stat strong {
  color: var(--sand);
  font-size: 1.35rem;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(183, 65, 14, 0.16);
  color: #ffd7c6;
  border: 1px solid rgba(183, 65, 14, 0.38);
  font-size: 0.92rem;
  font-weight: 700;
}

.stats-grid,
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.stat {
  padding: 22px;
  text-align: center;
}

.stat strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem;
  letter-spacing: 0.05em;
}

.section-heading {
  margin: 52px 0 18px;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  overflow: hidden;
}

.product-card img {
  height: 270px;
  object-fit: cover;
}

.product-content {
  padding: 18px;
}

.product-head {
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.product-head h3 {
  font-size: 2rem;
  line-height: 0.95;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.product-meta a {
  color: var(--tan);
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 52px;
  padding: clamp(24px, 4vw, 36px);
}

.split-layout h2,
.footer h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article,
.why-us-grid article {
  padding: 20px;
  border-radius: 18px;
  background: rgba(113, 121, 126, 0.08);
  border: 1px solid rgba(210, 180, 140, 0.12);
}

.feature-list h3,
.why-us-grid h3 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 52px;
  padding: clamp(24px, 4vw, 34px);
}

.footer p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .hero,
  .split-layout,
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-frame {
    width: min(100% - 20px, 1220px);
    padding-top: 16px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .split-layout,
  .products-grid,
  .stats-grid,
  .why-us-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-card img {
    height: 320px;
  }

  .nav-links {
    gap: 12px;
  }

  .hero-copy h2 {
    line-height: 1;
  }

  .hero-card-info,
  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
  }
}
