@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --bg:       #111110;
  --surface:  #1A1A18;
  --border:   #272724;
  --text:     #F0EAE2;
  --muted:    #9A9490;
  --dim:      #5A5652;
  --accent:   #D96A10;
  --accent-h: #F07820;
  --radius:   6px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover { color: var(--accent-h); }

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Layout ───────────────────────────────────── */

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Header ───────────────────────────────────── */

header {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.wordmark:hover { color: var(--text); }
.wordmark:focus-visible { outline-offset: 5px; }

.mark {
  flex-shrink: 0;
}

.site-contact {
  font-size: 0.875rem;
  color: var(--muted);
}

.site-contact:hover { color: var(--text); }

/* ── Hero ─────────────────────────────────────── */

.hero {
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  max-width: 700px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

/* ── Sections ─────────────────────────────────── */

section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* ── Services ─────────────────────────────────── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.service-item h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Products ─────────────────────────────────── */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  transition: border-color 0.15s ease;
}

.product-card:hover {
  border-color: var(--dim);
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.badge {
  display: inline-flex;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(217, 106, 16, 0.1);
  border: 1px solid rgba(217, 106, 16, 0.25);
  border-radius: 4px;
  padding: 0.2rem 0.55rem;
}

.product-card p {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── About ────────────────────────────────────── */

.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Contact ──────────────────────────────────── */

.contact-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-link:hover { color: var(--accent-h); }

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--dim);
}

/* ── Footer ───────────────────────────────────── */

footer {
  padding: 2.5rem 0;
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--dim);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links a:hover { color: var(--muted); }

/* ── Responsive ───────────────────────────────── */

@media (max-width: 640px) {
  .hero { padding: 4rem 0 3.5rem; }
  .about-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
}
