/* --- Theme --- */
:root {
  --bg: #0c0f14;
  --surface: #141922;
  --text: #e8eaef;
  --text-muted: #8b92a3;
  --accent: #c9a227;
  --accent-dim: rgba(201, 162, 39, 0.15);
  --border: rgba(255, 255, 255, 0.06);
}

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

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
  overflow-x: hidden;
}

/* Subtle grid – "domain" structure */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  opacity: 0.4;
}

/* --- Layout --- */
.container {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  text-align: center;
}

.copy {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
}

.footer {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* --- Index / Home --- */
.coming {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

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

.tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.motto {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}

.motto strong {
  color: var(--accent);
  font-style: normal;
}

.products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.product {
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--accent-dim);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(201, 162, 39, 0.25);
}
