:root {
  --bg: #0b0d10;
  --bg-alt: #111417;
  --surface: #15181c;
  --border: #262b31;
  --text: #f2f3f5;
  --text-dim: #a7adb5;
  --accent: #c9a24b;
  --accent-dim: #8d7433;
  --radius: 12px;
  --max-width: 1120px;
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; }

h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }

p { color: var(--text-dim); }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
}

.logo.small { font-size: 1rem; letter-spacing: 0.08em; gap: 8px; }

.logo-mark {
  height: 34px;
  width: auto;
}

.logo.small .logo-mark { height: 26px; }

.hero-logo {
  display: block;
  height: 130px;
  width: auto;
  margin: 0 auto 28px;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-small { padding: 8px 18px; font-size: 0.85rem; }

.btn-primary {
  background: var(--accent);
  color: #111;
}

.btn-primary:hover { background: #ddb968; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero {
  padding: 120px 0 100px;
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.12), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.08;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.08rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Values */
.values { padding: 100px 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
}

.value-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.value-card p { font-size: 0.92rem; }

/* Products */
.products {
  padding: 100px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.products-sub {
  max-width: 520px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 48px 0 32px;
}

.product-card {
  position: relative;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s ease;
}

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

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}

.product-card p { font-size: 0.92rem; }

.products-note { font-size: 0.95rem; }

.link-accent {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent-dim);
}

.link-accent:hover { border-bottom-color: var(--accent); }

/* Mission */
.mission {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.mission-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.mission-card h3 { font-size: 1.4rem; color: var(--text); }

/* Motto */
.motto {
  padding: 110px 0;
  text-align: center;
}

.motto h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-style: italic;
  color: var(--accent);
}

.motto-sub {
  max-width: 600px;
  margin: 16px auto 0;
}

/* Contact */
.contact {
  padding: 100px 0 120px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.contact-inner { max-width: 560px; margin: 0 auto; }

.contact-form {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input, textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form .btn { align-self: center; margin-top: 8px; }

.form-status {
  text-align: center;
  font-size: 0.9rem;
  color: var(--accent);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

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

.footer-inner p { font-size: 0.85rem; }

@media (max-width: 640px) {
  .nav { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
