@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Racing+Sans+One&display=swap');

:root {
  --bg: #09090b;
  --surface: #131316;
  --border: #23232a;
  --text: #e4e4ec;
  --text-muted: #85858f;
  --accent: #e8364f;
  --accent-dim: rgba(232,54,79,0.08);
  --silver: #b8bcc8;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  min-height: 100vh;
}

nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,9,11,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border); padding: 0 2rem;
}
nav .inner {
  max-width: 1060px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem; height: 58px;
}
nav .logo {
  font-family: 'Racing Sans One', cursive; font-size: 1.2rem;
  color: var(--accent); text-decoration: none; letter-spacing: 1px;
}
nav .links { display: flex; gap: 0.15rem; list-style: none; }
nav .links a {
  display: block; padding: 0.4rem 0.85rem;
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
nav .links a:hover, nav .links a.active {
  color: var(--text); background: var(--accent-dim);
}

.breadcrumb {
  max-width: 1060px; margin: 0 auto; padding: 1.5rem 2rem 0;
  font-size: 0.75rem; color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb .sep { margin: 0 0.35rem; opacity: 0.4; }

.hero {
  max-width: 1060px; margin: 0 auto; padding: 4rem 2rem 2rem;
}
.hero h1 {
  font-family: 'Racing Sans One', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15; color: var(--text); margin-bottom: 0.5rem;
}
.hero h1 span { color: var(--accent); }
.hero .tagline {
  font-size: 1rem; color: var(--text-muted); max-width: 600px;
  font-weight: 300;
}

.content {
  max-width: 1060px; margin: 0 auto; padding: 1.5rem 2rem 3rem;
}
.content article {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 2.5rem; margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
}
.content article h2 {
  font-size: 1.3rem; margin-bottom: 0.8rem; color: var(--silver);
  font-weight: 600;
}
.content article p {
  color: var(--text-muted); margin-bottom: 1rem; font-size: 0.93rem;
}

.brand-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px,1fr));
  gap: 1rem; margin-top: 1.5rem;
}
.brand-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.8rem; text-decoration: none; color: inherit;
  transition: transform 0.2s, border-color 0.2s;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.brand-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.brand-card h3 {
  font-family: 'Racing Sans One', cursive;
  font-size: 1.15rem; color: var(--text);
}
.brand-card .origin { font-size: 0.7rem; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.brand-card p { font-size: 0.82rem; color: var(--text-muted); }

footer {
  max-width: 1060px; margin: 0 auto; padding: 2rem;
  border-top: 1px solid var(--border); text-align: center;
  font-size: 0.72rem; color: var(--text-muted);
}
