/* Momus Review — attorney-facing consulting site.
   Letterhead palette: white space, charcoal, antique gold. Sober, premium. */

:root {
  --white: #ffffff;
  --cream: #faf7f1;
  --charcoal: #2a2926;
  --charcoal-soft: #4b4842;
  --muted: #726d63;
  --gold: #9a7b3f;        /* antique gold accent */
  --gold-deep: #7a5f2f;   /* darker gold for small text on white */
  --gold-pale: #e7dcc4;   /* hairline rules, borders */
  --line: #e8e3d8;
  --maxw: 1080px;
  --prose: 64ch;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .wordmark, .eyebrow {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(34px, 5vw, 52px); line-height: 1.1; margin: 0 0 18px; }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.15; margin: 0 0 16px; }
h3 { font-size: 22px; margin: 0 0 8px; }

p { margin: 0 0 16px; max-width: var(--prose); }
a { color: var(--gold-deep); text-decoration: none; }
a:hover { color: var(--gold); text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: var(--gold-deep);
  margin: 0 0 14px;
}

.rule {
  width: 56px; height: 2px; background: var(--gold);
  border: 0; margin: 0 0 26px;
}

/* Header / nav */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gold-pale);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 16px 28px; max-width: var(--maxw); margin: 0 auto;
}
.wordmark { font-size: 24px; color: var(--charcoal); display: inline-flex; align-items: baseline; gap: 9px; }
.wordmark:hover { text-decoration: none; color: var(--charcoal); }
.wordmark .mark-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); display: inline-block; }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--charcoal-soft); font-size: 15px; font-family: "Inter", sans-serif;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-deep); text-decoration: none; }
.nav-links a.active { color: var(--gold-deep); }

.btn {
  display: inline-block; font-family: "Inter", sans-serif; font-size: 15px;
  font-weight: 500; letter-spacing: 0.02em; padding: 11px 20px;
  border: 1px solid var(--gold); color: var(--gold-deep); background: transparent;
  border-radius: 2px; transition: all 0.18s ease; cursor: pointer;
}
.btn:hover { background: var(--gold); color: #fff; text-decoration: none; }
.btn-solid { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-solid:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

/* Sections */
section { padding: 84px 0; }
.section-alt { background: var(--cream); }
.section-tight { padding: 56px 0; }
.lead { font-size: 20px; color: var(--charcoal-soft); max-width: var(--prose); }

.hero { padding: 104px 0 88px; }
.hero .tagline { font-size: 21px; color: var(--charcoal-soft); max-width: 40ch; margin-bottom: 30px; }

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; }

/* Grid + cards */
.grid { display: grid; gap: 22px; margin-top: 34px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: 3px;
  padding: 28px; transition: border-color 0.18s ease;
}
.card:hover { border-color: var(--gold-pale); }
.card h3 { color: var(--charcoal); }
.card p { color: var(--charcoal-soft); margin-bottom: 0; }
.section-alt .card { background: #fff; }

/* Feature list with gold markers */
.feature-list { list-style: none; padding: 0; margin: 24px 0 0; max-width: var(--prose); }
.feature-list li { position: relative; padding: 0 0 18px 26px; color: var(--charcoal-soft); }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg);
}
.feature-list strong { color: var(--charcoal); font-weight: 600; }

/* Checklist page */
.checklist { max-width: var(--prose); }
.checklist h3 { margin-top: 34px; color: var(--gold-deep); font-size: 20px; }
.checklist ul { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 7px 0 7px 30px; position: relative; color: var(--charcoal-soft); border-bottom: 1px solid var(--line); }
.checklist li::before {
  content: ""; position: absolute; left: 2px; top: 12px; width: 12px; height: 12px;
  border: 1.5px solid var(--gold); border-radius: 2px;
}

/* Specimen / document block */
.specimen {
  background: #fff; border: 1px solid var(--gold-pale); border-top: 3px solid var(--gold);
  border-radius: 3px; padding: 30px 32px; margin-top: 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.specimen .stamp {
  font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 12px; font-weight: 600; color: var(--gold-deep); margin-bottom: 18px;
}
.specimen dl { margin: 0; }
.specimen dt {
  font-family: "Inter", sans-serif; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--muted); margin: 18px 0 4px;
}
.specimen dd { margin: 0; color: var(--charcoal); }
.specimen .verbatim { font-style: italic; color: var(--charcoal-soft); border-left: 2px solid var(--gold-pale); padding-left: 14px; }
.specimen .sev { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  padding: 3px 9px; border-radius: 2px; font-family: "Inter", sans-serif; }
.sev-flag { color: #7a2f2f; background: #f4e7e2; }
.sev-review { color: var(--gold-deep); background: #f3ead6; }

/* Callout */
.callout { border-left: 3px solid var(--gold); background: var(--cream); padding: 20px 24px; margin: 26px 0; max-width: var(--prose); }
.callout p:last-child { margin-bottom: 0; }

/* Synthetic review scenario cards */
.scen-label { margin-top: 16px; font-family: "Inter", sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold-deep); font-weight: 600; }
.scen-claim { font-style: italic; color: var(--charcoal-soft); border-left: 2px solid var(--gold-pale); padding-left: 14px; }

/* Contact */
.contact-block { max-width: var(--prose); }
.contact-line { font-size: 18px; margin: 8px 0; }
.muted { color: var(--muted); }
.small { font-size: 14px; }

/* Footer */
.site-footer {
  background: var(--cream); border-top: 2px solid var(--gold-pale);
  padding: 46px 0 40px; margin-top: 20px;
}
.site-footer .footer-grid { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.site-footer .wordmark { font-size: 20px; }
.disclaimer { color: var(--muted); font-size: 13.5px; max-width: 62ch; margin-top: 16px; line-height: 1.6; }
.footer-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.footer-nav a { color: var(--charcoal-soft); font-size: 14px; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  section { padding: 60px 0; }
  .hero { padding: 72px 0 56px; }
}
