/* Martyria site: brand tokens mirrored from the app's constants/theme.ts */
:root {
  --parchment: #FAF8F2;
  --umber: #54432F;
  --charcoal: #2B241A;
  --clay: #9F7F58;
  --warm-taupe: #8C7F6E;
  --mid-grey: #8C8073;
  --light-grey: #ECE8DF;
  --gold: #D4AF37;
}

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

body {
  background: var(--parchment);
  color: var(--charcoal);
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

/* Brand lockup, mirrors components/BrandHeader.tsx (the auth screens):
   mark, wordmark, line/diamond/line divider, pillars, script, all clay/umber. */
.lockup { text-align: center; margin-bottom: 40px; }
.lockup img { width: 104px; height: 104px; margin-bottom: 8px; }
.wordmark {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 8px;
  margin-right: -8px; /* balance trailing tracking */
  color: var(--umber);
}
.wordmark a { color: inherit; text-decoration: none; }
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}
.divider-line { width: 64px; height: 1px; background: var(--clay); }
.divider-diamond {
  width: 5px;
  height: 5px;
  background: var(--clay);
  transform: rotate(45deg);
}
.pillars {
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 2.5px;
  margin-right: -2.5px;
  color: var(--clay);
}
.script {
  font-family: "Great Vibes", cursive;
  font-size: 24px;
  color: var(--clay);
  margin-top: 8px;
}

h2 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--umber);
  margin: 32px 0 10px;
  padding-top: 20px;
  border-top: 1px solid var(--light-grey);
}

h1 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--umber);
  margin-bottom: 16px;
}
p { margin-bottom: 14px; }
p.muted { color: var(--mid-grey); font-size: 15px; }

a { color: var(--clay); }

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

footer {
  text-align: center;
  padding: 28px 24px 36px;
}
.footer-rule {
  width: 100%;
  max-width: 592px; /* main column minus its padding */
  height: 1px;
  background: var(--light-grey);
  margin: 0 auto 24px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.footer-links a {
  color: var(--warm-taupe);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.footer-links a:hover { color: var(--umber); }
.copyright {
  margin-top: 14px;
  font-size: 12px;
  color: var(--warm-taupe);
  opacity: 0.75;
}
