/* Nihongoism—brand landing page.
   Colors and type per Nihongoism Brand Guidelines 2025-03-05:
   brick #98342C (logo, headings, buttons), body text #441111,
   Alegreya headings, Inter body, torn-paper background graphic. */

@font-face {
  font-family: "Alegreya";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/alegreya.woff2") format("woff2");
}

@font-face {
  font-family: "Alegreya";
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("/fonts/alegreya-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/inter.woff2") format("woff2");
}

:root {
  --brick: #98342c;
  --brick-dark: #7e2b24;
  --body-ink: #441111;
  --muted: #7f6342;
  --card: #fffaf3;
  --line: #e3cbbf;
  --heading: "Alegreya", Georgia, serif;
  --body: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { font-size: 18px; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3cbbf url("/bg.jpg") center / cover no-repeat;
  color: var(--body-ink);
  font-family: var(--body);
  line-height: 1.6;
  padding: 1.5rem;
  -webkit-font-smoothing: antialiased;
}

/* Card */

.card {
  width: 100%;
  max-width: 32rem;
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 10px 40px rgba(68, 17, 17, 0.28);
  padding: 3rem 2.5rem 1.5rem;
  text-align: center;
}

.wordmark {
  width: min(100%, 24rem);
  height: auto;
  margin: 0 auto 1.1rem;
  display: block;
}

.lede {
  font-family: var(--heading);
  font-weight: 600;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--body-ink);
  margin: 0 0 2.2rem;
}

/* Primary CTA—the big Substack link */

.cta {
  display: block;
  background: var(--brick);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  transition: background 0.12s ease, transform 0.12s ease;
}

.cta:hover {
  background: var(--brick-dark);
  transform: translateY(-2px);
}

.cta-title {
  display: block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.4rem;
}

.cta-sub {
  display: block;
  font-size: 0.9rem;
  opacity: 0.88;
  margin-top: 0.25rem;
}

/* Secondary link—Kanjiism */

.secondary {
  display: block;
  background: transparent;
  color: var(--body-ink);
  text-decoration: none;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  transition: border-color 0.12s ease;
}

.secondary:hover {
  border-color: var(--brick);
}

.secondary-title {
  display: block;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--brick);
}

.secondary-sub {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Footer */

.card-footer {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8rem;
}

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