/* Colmersa shared site styles */
:root {
  --bg: #0c0d0f;
  --bg-elev: #14161a;
  --bg-soft: #1a1d22;
  --line: #2a2e35;
  --text: #e8e6e3;
  --muted: #a19d96;
  --accent: #c4a574;
  --accent-strong: #d7bb88;
  --accent-dim: #8a7350;
  --max: 980px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.site-header { border-bottom: 1px solid var(--line); padding: 1.2rem 0; }
.header-row { align-items: center; display: flex; gap: 1.5rem; justify-content: space-between; }
.brand { color: var(--text); font-size: .86rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.brand span { color: var(--accent); }
.nav { display: flex; flex-wrap: wrap; gap: 1.1rem; justify-content: flex-end; }
.nav a { color: var(--muted); font-size: .85rem; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); text-decoration: none; }
.hero { padding: 5.5rem 0 4.25rem; max-width: 760px; }
.hero.center { margin: 0 auto; text-align: center; }
.eyebrow { color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .18em; margin-bottom: 1rem; text-transform: uppercase; }
h1, h2, h3 { color: var(--text); line-height: 1.15; }
h1 { font-size: clamp(2.35rem, 6vw, 4.6rem); letter-spacing: -.045em; margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.55rem, 3vw, 2.25rem); letter-spacing: -.025em; margin-bottom: .8rem; }
h3 { font-size: 1.08rem; letter-spacing: .015em; margin-bottom: .45rem; }
.lede { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 44rem; }
.hero.center .lede { margin-left: auto; margin-right: auto; }
.ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero.center .ctas { justify-content: center; }
.btn { border: 1px solid var(--line); border-radius: 3px; display: inline-block; font-size: .8rem; font-weight: 750; letter-spacing: .08em; padding: .78rem 1.15rem; text-transform: uppercase; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { border-color: var(--accent-dim); color: var(--text); }
.section { padding: 1rem 0 4.75rem; }
.section-head { margin-bottom: 1.4rem; max-width: 42rem; }
.section-head p { color: var(--muted); }
.grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 4px; padding: 1.45rem 1.3rem; }
.card p, .card li { color: var(--muted); font-size: .96rem; }
.card ul { margin: .75rem 0 0 1.1rem; }
.card li + li { margin-top: .35rem; }
.kicker { color: var(--accent); font-size: .7rem; font-weight: 700; letter-spacing: .14em; margin-bottom: .8rem; text-transform: uppercase; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 2.3rem 0; }
.callout { background: linear-gradient(135deg, #1a1d22, #111316); border: 1px solid var(--accent-dim); border-radius: 4px; padding: 1.8rem; }
.callout p { color: var(--muted); }
.form-card { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 4px; margin: 2rem auto 0; max-width: 42rem; padding: 1.5rem; text-align: left; }
.form-card label { color: var(--text); display: block; font-size: .86rem; font-weight: 650; margin-bottom: .45rem; }
.form-row { display: flex; gap: .65rem; }
.form-row input { background: var(--bg); border: 1px solid var(--line); border-radius: 3px; color: var(--text); flex: 1; font: inherit; min-width: 0; padding: .78rem .85rem; }
.form-row input:focus { border-color: var(--accent); outline: 2px solid rgba(196,165,116,.2); }
.form-note { color: var(--muted); font-size: .8rem; margin-top: .7rem; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; margin-top: 2rem; padding: 2rem 0 3rem; }
.footer-row { display: flex; flex-wrap: wrap; gap: .8rem 2rem; justify-content: space-between; }
.legal { margin-top: .55rem; max-width: 52rem; }
@media (max-width: 700px) {
  .header-row { align-items: flex-start; flex-direction: column; gap: .75rem; }
  .nav { justify-content: flex-start; }
  .hero { padding: 4rem 0 3.2rem; }
  .grid, .grid.two { grid-template-columns: 1fr; }
  .form-row { align-items: stretch; flex-direction: column; }
}
@media print {
  :root { --bg: #fff; --bg-elev: #fff; --line: #b8b8b8; --text: #111; --muted: #333; --accent: #111; --accent-strong: #111; }
  body { font-size: 11pt; }
  .site-header, .site-footer, .no-print, .ctas { display: none !important; }
  .wrap { width: 100%; }
  .hero { padding: 0 0 1.2rem; }
  .card, .callout { break-inside: avoid; border-color: #bbb; }
  a { color: inherit; }
}
