/* Plumeline — v2 */

@font-face {
  font-family: 'Lyon Text';
  src: url('./fonts/LyonText-Regular.woff2') format('woff2'),
       url('./fonts/LyonText-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lyon Text';
  src: url('./fonts/LyonText-Bold.woff2') format('woff2'),
       url('./fonts/LyonText-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FAF6F0;
  --ink: #2A2420;
  --ink-soft: #5C554E;
  --ink-muted: #8A837C;
  --accent: #B8372D;
  --rule: #D8D0C6;
  --ff-body: 'Lyon Text', Georgia, serif;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  min-height: 100vh;
  max-width: 39rem;
  margin: 0 auto;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 5rem;
  }
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Typography */

h2 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0;
  color: var(--ink);
}

p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

a {
  color: var(--ink);
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: 600;
}

/* Masthead */

.masthead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.logo-icon {
  width: 144px;
  height: 144px;
  object-fit: contain;
  background: var(--bg);
  mix-blend-mode: multiply;
}

.wordmark {
  font-family: var(--ff-body);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1;
}

.tagline {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* Opening */

.opening {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

/* Steps */

.step {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.step-num {
  font-family: var(--ff-body);
  font-weight: 700;
  color: var(--rule);
  font-size: 1.125rem;
}

/* Contact */

.contact {
  color: var(--ink);
}

.contact-label {
  font-weight: 700;
  color: var(--accent);
}

/* Footer */

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

footer p {
  font-size: 0.875rem;
  color: var(--ink-muted);
}

footer a {
  color: var(--ink-muted);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 3px;
}

footer a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink-muted);
}
