/*
 * Maromi Systems subscribers — landing page styles.
 *
 * Calm-luxury aesthetic per the master reference.
 * Warm off-white surface, soft neutrals, muted gold accent.
 */

:root {
  --bg: #faf6f0;
  --surface: #ffffff;
  --ink: #1f1d1a;
  --ink-soft: #4a463f;
  --muted: #7a756e;
  --border: #e7e2d9;
  --accent: #b8975a;
  --accent-soft: #d4ba85;
  --bad: #c6493b;
  --ok: #4d8c3f;
  --serif: ui-serif, "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font: 16px/1.6 var(--sans);
  color: var(--ink);
  background: var(--bg);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 920px; margin: 0 auto; padding: 0 24px; }

header.site {
  padding: 28px 0 0;
}
header.site .nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
header.site .brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--ink);
}
header.site .brand a { color: inherit; }
header.site .nav-links a {
  margin-left: 24px;
  color: var(--ink-soft);
  font-size: 14px;
}
header.site .nav-links a:hover { color: var(--ink); }

main { padding: 48px 0 64px; }

h1 {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}
h2 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  margin: 40px 0 12px;
  color: var(--ink);
}
h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 32px 0 8px;
}
p { margin: 0 0 14px; color: var(--ink-soft); }
.lead { font-size: 18px; color: var(--ink); max-width: 640px; margin-bottom: 24px; }

.cta {
  display: inline-block;
  padding: 12px 28px;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--ink);
  cursor: pointer;
}
.cta:hover { background: #000; text-decoration: none; }
.cta.secondary {
  background: transparent;
  color: var(--ink);
}
.cta.secondary:hover { background: var(--surface); }

form.signup {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 12px 0 8px;
}
form.signup input[type=email] {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font: inherit;
  background: var(--surface);
}
form.signup input[type=email]:focus { outline: 2px solid var(--accent-soft); outline-offset: -1px; }
.signup-status { font-size: 13px; color: var(--muted); min-height: 1.4em; }
.signup-status.ok { color: var(--ok); }
.signup-status.err { color: var(--bad); }

ol.steps { padding-left: 0; list-style: none; counter-reset: step; }
ol.steps li {
  counter-increment: step;
  position: relative;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--border);
}
ol.steps li:last-child { border-bottom: none; }
ol.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  background: var(--surface);
}
ol.steps strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 4px;
}

footer.site {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
}

.muted { color: var(--muted); }
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 20px;
  margin: 16px 0;
}
