/* Coffer marketing site — vintage travel journal aesthetic */
:root {
  --bg: #0d0815;
  --bg2: #140c22;
  --gold: #c8a04a;
  --gold-dim: #8e6f30;
  --parchment: #e9dab8;
  --ember: #b85c2a;
  --hairline: rgba(255, 255, 255, 0.08);
}

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

html, body {
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--parchment);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 160, 74, 0.35);
  transition: border-color 0.18s;
}
a:hover { border-bottom-color: var(--gold); }

/* Hero (index) */
.hero { margin-bottom: 56px; }
.kicker {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Charter", "Iowan Old Style", Georgia, serif;
  font-weight: 900;
  font-size: clamp(36px, 7vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 -0.5px 0 rgba(255, 255, 255, 0.06);
  margin-bottom: 18px;
}
.hero .sub {
  color: rgba(233, 218, 184, 0.75);
  font-size: 18px;
  max-width: 540px;
}

.links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.links a {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 0.8px solid rgba(200, 160, 74, 0.35);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px);
}

footer {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(233, 218, 184, 0.4);
  text-transform: uppercase;
}

/* Prose pages */
.prose h1 {
  font-family: "Charter", "Iowan Old Style", Georgia, serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.55), 0 -0.5px 0 rgba(255, 255, 255, 0.06);
}
.prose .updated {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(233, 218, 184, 0.5);
  margin-bottom: 32px;
}
.prose h2 {
  font-family: "Charter", "Iowan Old Style", Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  margin: 40px 0 12px;
  letter-spacing: -0.005em;
}
.prose h3 {
  font-family: "Charter", "Iowan Old Style", Georgia, serif;
  font-weight: 700;
  font-size: 17px;
  margin: 28px 0 8px;
}
.prose p, .prose ul {
  color: rgba(233, 218, 184, 0.85);
  margin-bottom: 14px;
}
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.prose strong { color: var(--parchment); }
.prose .kicker { margin-bottom: 16px; }
.prose .kicker a {
  border-bottom: none;
  color: rgba(233, 218, 184, 0.55);
  font-size: 11px;
  letter-spacing: 0.12em;
}
.prose .kicker a:hover { color: var(--parchment); }
