/* ===== Artix — Minimalist Dark ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0A0A0A;
  --bg-card: #0A0A0A;
  --bg-hover: #131313;
  --line: #1F1F1F;
  --line-soft: #161616;
  --ink: #FAFAFA;
  --ink-dim: #9A9A9A;
  --ink-faint: #5A5A5A;
  --ink-quiet: #3A3A3A;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Fraunces', 'Times New Roman', serif;
}

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body { min-height: 100vh; }

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ===== Page wrapper ===== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===== Nav ===== */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  border-bottom: 0.5px solid var(--line);
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 24px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  font-weight: 400;
}
.nav-links a {
  color: var(--ink-dim);
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  margin: 5px 0;
}

/* ===== Section base ===== */
.section {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 80px 48px;
  position: relative;
}

/* ===== Hero (home) ===== */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 48px;
  text-align: center;
  min-height: calc(100vh - 74px - 60px);
}
.logo-mark {
  width: 380px;
  height: auto;
  max-width: 80vw;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.dot {
  display: none;
}
.tagline {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 560px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}
.hero-cue {
  margin-top: 56px;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 0.5px solid var(--ink);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}
.hero-cue:hover { gap: 14px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Page title (interior pages) ===== */
.page-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.2s forwards;
}
.page-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 540px;
  letter-spacing: -0.005em;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}

/* ===== About body ===== */
.body-prose {
  max-width: 680px;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-dim);
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.body-prose p + p { margin-top: 22px; }
.body-prose strong { font-weight: 500; color: var(--ink); }

/* Page top spacing — centered interior layout */
.section-top {
  padding-top: 100px;
  padding-bottom: 60px;
  align-items: center;
  text-align: center;
}
.section-top .page-intro {
  margin: 0 auto;
}

/* ===== Brands grid ===== */
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 0.5px solid var(--line);
  border-bottom: 0.5px solid var(--line);
  margin: 64px auto 0;
  width: 100%;
  max-width: 960px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.brand-card {
  background: var(--bg-card);
  padding: 40px 36px;
  position: relative;
  cursor: pointer;
  transition: background 0.25s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}
.brand-card:hover { background: var(--bg-hover); }
.brand-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.brand-no {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-faint);
  min-width: 22px;
}
.brand-name {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.brand-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--ink-dim);
  margin-top: 14px;
  padding-left: 38px;
  max-width: 90%;
}
.brand-arrow {
  position: absolute;
  top: 36px;
  right: 32px;
  font-size: 16px;
  color: var(--ink-faint);
  transition: all 0.25s ease;
}
.brand-card:hover .brand-arrow {
  color: var(--ink);
  transform: translate(3px, -3px);
}

/* ===== Contact ===== */
.contact-block {
  margin: 56px auto 0;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.4s forwards;
}
.contact-label {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.contact-email {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: var(--ink);
  border-bottom: 0.5px solid var(--ink-quiet);
  padding-bottom: 6px;
  display: inline-block;
  transition: border-color 0.25s ease;
}
.contact-email:hover { border-color: var(--ink); }
.contact-meta {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 48px;
  font-size: 13px;
  color: var(--ink-dim);
  opacity: 0;
  animation: fadeUp 0.9s ease 0.6s forwards;
}
.contact-meta a {
  color: var(--ink-dim);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-meta a:hover { color: var(--ink); }
.contact-meta svg { width: 13px; height: 13px; }

/* ===== Footer ===== */
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  border-top: 0.5px solid var(--line);
  font-size: 11px;
  color: var(--ink-faint);
}
footer a { color: var(--ink-faint); transition: color 0.2s ease; }
footer a:hover { color: var(--ink-dim); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav { padding: 18px 24px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh; width: 70%; max-width: 280px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 48px;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(12px);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9;
    font-size: 15px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-toggle { display: block; z-index: 11; }
  .section { padding: 60px 24px; }
  .section-top { padding-top: 60px; padding-bottom: 40px; }
  .hero { padding: 80px 24px; }
  .logo-mark { width: 200px; }
  .brands { grid-template-columns: 1fr; margin-top: 40px; }
  .brand-card { padding: 32px 24px; min-height: 140px; }
  .brand-desc { padding-left: 0; margin-top: 18px; }
  .contact-email { font-size: 24px; }
  .contact-meta { flex-direction: column; gap: 16px; }
  footer { padding: 16px 24px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
