*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0c0c0f;
  --surface:    #16161a;
  --surface-2:  #1f1f26;
  --border:     #2a2a36;
  --accent:     #e8a020;
  --accent-dim: #3d2a00;
  --text:       #e4e4ec;
  --text-muted: #808098;
  --radius:     10px;
  --font:       'Segoe UI', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 64px 0; }

/* --- Header --- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky; top: 0; z-index: 100;
}
.nav { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--accent); color: #000;
  font-weight: 800; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.brand h1 { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 2px;
}
.top-nav { display: flex; gap: 28px; }
.top-nav a { color: var(--text-muted); font-size: 0.88rem; font-weight: 500; }
.top-nav a:hover { color: var(--text); text-decoration: none; }

/* --- Hero --- */
.hero {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; align-items: center; padding: 72px 24px;
}
.hero-copy h2 { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.hero-text { color: var(--text-muted); max-width: 460px; margin-bottom: 22px; }
.hero-points { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-points span {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 20px; padding: 4px 14px;
  font-size: 0.78rem; font-weight: 500; color: var(--text-muted);
}
.hero-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.hero-card-image {
  height: 140px;
  background: linear-gradient(135deg, #1a2a1a, #3a6a2a);
}
.hero-card-body { padding: 18px; }
.hero-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.hero-card-body p { color: var(--text-muted); font-size: 0.83rem; margin-bottom: 10px; }
.hero-card-body strong { color: var(--accent); font-size: 0.8rem; }

/* --- Section heading --- */
.section-heading { margin-bottom: 28px; }
.section-heading h2 { font-size: 1.55rem; font-weight: 800; }

/* --- Product grid --- */
.product-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.2s, transform 0.15s;
}
.product-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.product-visual { height: 80px; }
.visual-ergonomics  { background: linear-gradient(135deg, #1a2a1a, #3a6a2a); }
.visual-lighting    { background: linear-gradient(135deg, #2a2a0a, #8a7a00); }
.visual-health      { background: linear-gradient(135deg, #1a1a2a, #2a3a8a); }
.visual-workshop    { background: linear-gradient(135deg, #2a1a2a, #6a2a6a); }

.product-body { padding: 16px 18px; }
.product-badge {
  display: inline-block; background: var(--accent-dim);
  border-radius: 4px; color: var(--accent);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em;
  margin-bottom: 4px; padding: 2px 8px; text-transform: uppercase;
}
.product-id { color: var(--text-muted); font-size: 0.72rem; margin-bottom: 6px; font-family: monospace; }
.product-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 3px; }
.proto-tagline { color: var(--accent); font-size: 0.8rem; font-weight: 500; margin-bottom: 8px; }
.product-body > p { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 10px; }

.spec-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.spec-list li {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.72rem; color: var(--text-muted);
  padding: 2px 8px;
}

.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px;
}
.price { color: var(--accent); font-size: 1rem; display: block; }
.lead  { color: var(--text-muted); font-size: 0.75rem; display: block; }

.order-btn {
  background: var(--accent); border-radius: 8px; color: #000;
  font-size: 0.82rem; font-weight: 700; padding: 8px 16px;
  transition: opacity 0.15s; white-space: nowrap;
}
.order-btn:hover { opacity: 0.85; text-decoration: none; }

/* --- Story / about --- */
.story-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; border-top: 1px solid var(--border);
}
.story-grid h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.story-grid > div > p { color: var(--text-muted); }
.info-panel { display: flex; flex-direction: column; gap: 28px; }
.info-number { display: block; font-size: 2.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.info-panel p { color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }

/* --- Contact --- */
.faq-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start; border-top: 1px solid var(--border);
}
.faq-strip h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.faq-strip > div > p { color: var(--text-muted); font-size: 0.88rem; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: flex; flex-direction: column; gap: 5px; }
.form-row label { font-size: 0.82rem; font-weight: 600; color: var(--text-muted); }
.form-row input,
.form-row textarea {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 6px; color: var(--text);
  font-family: var(--font); font-size: 0.88rem;
  padding: 9px 12px; width: 100%;
}
.form-row input:focus,
.form-row textarea:focus { border-color: var(--accent); outline: none; }
.form-row textarea { resize: vertical; }

.hint { color: var(--text-muted); font-size: 0.75rem; font-weight: 400; }

.contact-status { font-size: 0.82rem; min-height: 1.2em; }
.contact-status.ok  { color: #22c55e; }
.contact-status.err { color: #ef4444; }

/* --- Buttons --- */
.primary-btn {
  background: var(--accent); border: none; border-radius: var(--radius);
  color: #000; cursor: pointer; font-size: 0.88rem; font-weight: 700;
  padding: 10px 20px; transition: opacity 0.15s; align-self: flex-start;
}
.primary-btn:hover { opacity: 0.85; }

/* --- Order page --- */
.order-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
}
.order-summary h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.order-summary > p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px; }
.order-meta {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; margin-top: 18px;
}
.order-meta > div { display: flex; justify-content: space-between; align-items: center; }
.meta-label { color: var(--text-muted); font-size: 0.8rem; }
.order-meta strong { color: var(--accent); font-size: 0.88rem; }

.order-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.order-form h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero, .story-grid, .faq-strip, .order-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .top-nav { display: none; }
}
