:root {
  --bg: #121416;
  --bg-soft: #1a1d21;
  --surface: #1f2328;
  --surface-soft: #262b31;
  --text: #f3f5f7;
  --muted: #b8c0c8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #c97821;
  --accent-bright: #e59a45;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top, rgba(201, 120, 33, 0.08), transparent 36%),
    linear-gradient(180deg, #111315 0%, #15181b 100%);
  color: var(--text);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(18, 20, 22, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.92rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-bright);
}

.hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-bright);
}

.hero-copy h1,
.section-heading h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.hero-line {
  margin: 14px 0 10px;
  font-size: clamp(1.2rem, 2.3vw, 1.65rem);
  color: #fff;
  font-weight: 700;
}

.hero-text,
.content-card p,
.product-card p,
.contact-row h3,
.contact-row a,
.site-footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 680px;
  font-size: 1.05rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button-primary {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: #18130d;
}

.button-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.hero-panel,
.content-card,
.product-card,
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 22px;
}

.hero-panel-inner {
  min-height: 100%;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(201, 120, 33, 0.18) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-panel-label {
  margin: 0 0 14px;
  font-weight: 800;
  color: #fff;
}

.hero-points {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.hero-points li + li {
  margin-top: 10px;
}

.section {
  padding: 42px 0;
}

.section-alt {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.section-heading-wide {
  margin-bottom: 22px;
}

.content-card,
.contact-card {
  padding: 24px;
}

.content-card p {
  margin: 0;
}

.content-card p + p {
  margin-top: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  padding: 24px;
}

.product-card h3,
.contact-row h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #fff;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201, 120, 33, 0.16);
  color: var(--accent-bright);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 14px;
}

.muted-badge {
  background: rgba(255,255,255,0.08);
  color: #d7dde4;
}

.product-card-muted {
  opacity: 0.95;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
  color: var(--accent-bright);
  text-decoration: none;
}

.contact-card {
  display: grid;
  gap: 20px;
}

.contact-row + .contact-row {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-row a {
  font-size: 1.02rem;
  text-decoration: none;
  color: #fff;
}

.site-footer {
  padding: 28px 0 36px;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .section-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 68px;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .cta-row {
    flex-direction: column;
  }

  .container {
    width: min(1180px, calc(100% - 28px));
  }

  .brand img {
    width: 46px;
    height: 46px;
  }
}
