:root {
  --ink:      #1c1f26;
  --ink-soft: #4a505c;
  --line:     #e6e3dc;
  --paper:    #faf8f4;
  --paper-2:  #f1eee7;
  --accent:   #6b4f2e;   /* warm, restrained, legal/professional */
  --accent-2: #8a6d44;
  --max: 1080px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; letter-spacing: 0.01em; }
.brand-dot { color: var(--accent); margin: 0 1px; }
.nav { display: flex; gap: 1.75rem; }
.nav a { font-size: 0.92rem; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero { padding: 6.5rem 0 5rem; border-bottom: 1px solid var(--line); }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  font-weight: 600; color: var(--accent); margin-bottom: 1.25rem;
}
.hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); max-width: 18ch; margin-bottom: 1.5rem; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 60ch; }

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section-alt { background: var(--paper-2); border-block: 1px solid var(--line); }
.section-tag {
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem;
  font-weight: 600; color: var(--accent); margin-bottom: 0.75rem;
}
.section h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); max-width: 22ch; margin-bottom: 2.5rem; }

.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; align-items: start; }
.split-head h2 { margin-bottom: 0; }
.split-body p + p { margin-top: 1.1rem; }
.split-body p { color: var(--ink-soft); }

/* ---- Cards ---- */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.5rem 1.4rem; transition: transform .18s, box-shadow .18s, border-color .18s;
}
.section-alt .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -18px rgba(28,31,38,.35); border-color: var(--accent-2); }
.card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---- Principles ---- */
.principles { list-style: none; display: grid; gap: 1.4rem; }
.principles li { padding-left: 1.25rem; border-left: 2px solid var(--accent); color: var(--ink-soft); }
.principles strong { color: var(--ink); font-weight: 600; }

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: #d9d6cf; padding: 3rem 0; }
.site-footer .brand { color: #fff; display: inline-block; margin-bottom: 0.6rem; }
.footer-note { color: #b7b3aa; }
.footer-legal { font-size: 0.85rem; color: #8c887f; margin-top: 1rem; }

/* ---- Responsive ---- */
@media (max-width: 720px) {
  .nav { display: none; }
  .split { grid-template-columns: 1fr; gap: 1.75rem; }
  .hero { padding: 4rem 0 3.5rem; }
  .section { padding: 3.5rem 0; }
}
