 :root {
  --charcoal:#111827;
  --slate:#374151;
  --copper:#C26D3A;
  --sand:#D6A77A;
  --offwhite:#F9FAFB;
  --white:#ffffff;
  --muted:#6B7280;
  --line:rgba(17,24,39,.12);
  --shadow:0 24px 80px rgba(17,24,39,.16);
}

* { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--charcoal);
  background:var(--offwhite);
  line-height:1.6;
}
a { color:inherit; text-decoration:none; }
.container { width:min(1180px, calc(100% - 40px)); margin:0 auto; }

header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(17,24,39,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(214,167,122,.18);
}

.nav {
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  color:white;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.5px;
  font-size:24px;
}

.brand-mark {
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand-text span {
  color: var(--sand);
}

nav {
  display:flex;
  gap:24px;
  align-items:center;
  font-size:14px;
  color:rgba(255,255,255,.82);
}
nav a:hover { color:var(--sand); }

.hamburger { display:none; }
.hamburger-label { display:none; cursor:pointer; }

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 18px;
  border-radius:14px;
  font-weight:700;
  font-size:14px;
  border:1px solid rgba(214,167,122,.6);
  color:white;
  background:rgba(194,109,58,.18);
  transition:.2s ease;
  white-space:nowrap;
}

.btn:hover { background:var(--copper); transform:translateY(-1px); }
.btn.dark { background:var(--charcoal); color:white; border-color:var(--charcoal); }

.hero {
  min-height:calc(100vh - 78px);
  display:grid;
  align-items:center;
  background:
    radial-gradient(circle at 75% 35%, rgba(194,109,58,.28), transparent 34%),
    linear-gradient(135deg, #080C14 0%, #111827 52%, #1f2937 100%);
  color:white;
  overflow:hidden;
  position:relative;
}

.hero::after {
  content:"";
  position:absolute;
  inset:auto -8% -22% auto;
  width:70vw;
  height:70vw;
  border:1px solid rgba(214,167,122,.18);
  border-radius:50%;
  background:radial-gradient(circle, rgba(214,167,122,.12), transparent 60%);
}

.hero-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
  padding:96px 0;
}

.eyebrow {
  color:var(--sand);
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:800;
  font-size:12px;
  margin-bottom:18px;
}

h1 {
  font-size:clamp(48px, 8vw, 92px);
  line-height:.95;
  letter-spacing:-4px;
  max-width:850px;
  margin-bottom:24px;
}

.accent { color:var(--sand); }

.hero p {
  max-width:650px;
  color:rgba(255,255,255,.78);
  font-size:19px;
  margin-bottom:32px;
}

.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }

.hero-card {
  border:1px solid rgba(214,167,122,.25);
  border-radius:32px;
  padding:34px;
  background:rgba(255,255,255,.06);
  box-shadow:var(--shadow);
  backdrop-filter:blur(16px);
}

.hero-logo {
  width:150px;
  height:150px;
  object-fit:contain;
  margin:0 auto 24px;
  display:block;
}

.hero-card h2 {
  font-size:34px;
  letter-spacing:-1.5px;
  margin-bottom:10px;
  text-align:center;
}

.hero-card p {
  font-size:15px;
  text-align:center;
  margin:0 auto;
}

section { padding:92px 0; }

.section-head {
  max-width:780px;
  margin-bottom:34px;
}

.section-head h2 {
  font-size:clamp(34px, 5vw, 58px);
  line-height:1.02;
  letter-spacing:-2px;
  margin-bottom:16px;
}

.section-head p { color:var(--muted); font-size:18px; }

.tiles {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.tile {
  background:white;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  min-height:230px;
  box-shadow:0 18px 50px rgba(17,24,39,.08);
  transition:.2s ease;
}

.tile:hover { transform:translateY(-4px); box-shadow:var(--shadow); }

.tile-icon {
  width:52px;
  height:52px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(194,109,58,.12);
  color:var(--copper);
  margin-bottom:18px;
  font-size:24px;
}

.tile h3 {
  font-size:23px;
  letter-spacing:-.8px;
  margin-bottom:10px;
}

.tile p { color:var(--muted); font-size:15px; }

.dark-band {
  background:var(--charcoal);
  color:white;
}

.dark-band .section-head p,
.dark-band .tile p { color:rgba(255,255,255,.68); }

.dark-band .tile {
  background:rgba(255,255,255,.055);
  border-color:rgba(214,167,122,.18);
}

.light-section {
  background:var(--offwhite);
}

.product-card {
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
  padding:36px;
  border-radius:34px;
  background:
    linear-gradient(135deg, rgba(17,24,39,.96), rgba(31,41,55,.96)),
    radial-gradient(circle at 80% 30%, rgba(194,109,58,.25), transparent 40%);
  color:white;
  border:1px solid rgba(214,167,122,.32);
  box-shadow:var(--shadow);
}

.badge {
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(194,109,58,.16);
  border:1px solid rgba(214,167,122,.38);
  color:var(--sand);
  font-size:12px;
  font-weight:800;
  letter-spacing:1.5px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.product-card h3 {
  font-size:clamp(42px, 6vw, 76px);
  letter-spacing:-3px;
  line-height:.95;
  margin-bottom:16px;
}

.product-card p {
  color:rgba(255,255,255,.74);
  font-size:17px;
  max-width:720px;
  margin-bottom:18px;
}

.product-visual {
  border-radius:26px;
  min-height:330px;
  background:
    radial-gradient(circle at 70% 30%, rgba(194,109,58,.55), transparent 20%),
    linear-gradient(140deg, rgba(214,167,122,.24), rgba(255,255,255,.06)),
    repeating-linear-gradient(45deg, transparent, transparent 16px, rgba(255,255,255,.04) 17px);
  border:1px solid rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  text-align:center;
  padding:28px;
}

.product-visual strong {
  font-size:40px;
  letter-spacing:-1.5px;
  display:block;
  margin-bottom:8px;
}

.about-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:40px;
  align-items:start;
}

.values {
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.value {
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
}

.value strong {
  display:block;
  margin-bottom:8px;
  font-size:18px;
}

.value span { color:var(--muted); font-size:14px; }

.contact-card {
  padding:38px;
  border-radius:32px;
  background:white;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

footer {
  padding:34px 0;
  background:var(--charcoal);
  color:rgba(255,255,255,.65);
  font-size:14px;
}

footer .container {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

@media (max-width:900px) {
  .hamburger-label { display:block; color:white; font-size:28px; }
  nav {
    position:absolute;
    left:20px;
    right:20px;
    top:78px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    background:var(--charcoal);
    border:1px solid rgba(214,167,122,.2);
    border-radius:20px;
    padding:22px;
  }
  .hamburger:checked ~ nav { display:flex; }
  .nav .header-btn { display:none; }
  .hero-grid,
  .product-card,
  .about-grid { grid-template-columns:1fr; }
  .tiles { grid-template-columns:1fr; }
  .values { grid-template-columns:1fr; }
  .contact-card { flex-direction:column; align-items:flex-start; }
}
