:root {
  --ink: #1B2420;
  --ink-soft: #24302A;
  --paper: #EDE6D6;
  --paper-soft: #F4EFE3;
  --brass: #A87C3F;
  --brass-light: #C79A5C;
  --ember: #8C4A34;
  --charcoal: #2B2822;
  --line: #C9BFA6;
  --line-on-ink: rgba(237, 230, 214, 0.22);

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 1080px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Letterhead header ---------- */

.letterhead {
  background: var(--paper);
  padding-top: 28px;
}

.letterhead-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 20px;
}

.wordmark {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wordmark-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.wordmark-tag {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--brass);
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
}

.nav a {
  text-decoration: none;
  color: var(--charcoal);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: var(--brass);
}

.brass-rule {
  height: 2px;
  background: linear-gradient(90deg, var(--brass) 0%, var(--brass) 60%, transparent 100%);
}

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 96px;
  animation: fade-up 0.7s ease both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.eyebrow-plain {
  font-size: 14px;
  color: var(--brass);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 46px);
  max-width: 16ch;
}

.hero-sub {
  max-width: 56ch;
  color: var(--charcoal);
  font-size: 17px;
}

.cta {
  display: inline-block;
  margin-top: 12px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--paper-soft);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.cta:hover,
.cta:focus-visible {
  background: transparent;
  color: var(--ink);
}

.hero-mark {
  display: flex;
  justify-content: center;
}

.monogram {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.monogram-ring {
  fill: none;
  stroke: var(--brass);
  stroke-width: 1.5;
}

.monogram-letters {
  font-family: var(--serif);
  font-size: 64px;
  fill: var(--ink);
}

/* ---------- Note from David ---------- */

.note {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 88px 0;
}

.note-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.section-label {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--brass-light);
  margin: 0;
}

.note .section-label { color: var(--brass-light); }

.note-body {
  max-width: 62ch;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--paper-soft);
}

.note-body p { margin-bottom: 1.1em; }

.signature {
  font-style: italic;
  color: var(--brass-light);
}

/* ---------- Practice ---------- */

.practice {
  padding: 96px 0;
}

.practice-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.practice-item {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.practice-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.practice-item p {
  font-size: 15.5px;
  color: var(--charcoal);
}

/* ---------- Process ---------- */

.process {
  background: var(--paper-soft);
  padding: 96px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  gap: 36px;
  max-width: 640px;
}

.process-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 20px;
}

.step-index {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--brass);
}

.process-steps h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.process-steps p {
  font-size: 15.5px;
}

/* ---------- Contact ---------- */

.contact {
  padding: 96px 0 112px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-intro h2 {
  font-size: 26px;
  margin-top: 8px;
  max-width: 22ch;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 14px;
  color: var(--ink);
}

.field input,
.field textarea {
  font-family: var(--sans);
  font-size: 16px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
  color: var(--charcoal);
  border-radius: 2px;
}

.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 1px;
}

.field-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.cta-submit {
  border: 1px solid var(--ink);
  cursor: pointer;
  justify-self: start;
  font-family: var(--sans);
}

.form-status {
  font-size: 14.5px;
  min-height: 1.4em;
}

.form-status[data-state="error"] { color: var(--ember); }
.form-status[data-state="success"] { color: #3E5C46; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(237, 230, 214, 0.7);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero-grid,
  .note-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-mark { order: -1; max-width: 140px; margin: 0 auto; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .practice-grid { grid-template-columns: 1fr; }
  .nav { gap: 18px; font-size: 14px; }
  .hero { padding: 56px 0 64px; }
  .note, .practice, .process, .contact { padding: 64px 0; }
}
