:root {
  --paper: #f3f0e9;
  --paper-2: #e9e6df;
  --ink: #111111;
  --muted: #6e716f;
  --rule: #c9c5bc;
  --accent: #f26f21;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.brand { display: flex; align-items: baseline; gap: 6px; font-weight: 700; letter-spacing: -0.03em; }
.brand-main { font-size: 1.25rem; }
.brand-sep { color: var(--accent); }
.brand-sub { font-size: .92rem; color: var(--muted); font-weight: 500; }

.nav { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 28px); font-size: .92rem; }
.nav a { white-space: nowrap; }
.nav-cta { border-bottom: 2px solid var(--accent); padding-bottom: 2px; }

.section-shell { width: min(var(--max), calc(100% - (var(--pad) * 2))); margin-inline: auto; }
.rule-top { border-top: 1px solid var(--rule); }

.hero { padding-top: clamp(70px, 10vw, 150px); padding-bottom: clamp(70px, 9vw, 130px); }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .12em; font-size: .74rem; font-weight: 700; }
.eyebrow.accent { color: var(--accent); }

h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: clamp(40px, 7vw, 90px); font-size: clamp(4rem, 11vw, 10.5rem); line-height: .82; letter-spacing: -0.065em; font-weight: 800; max-width: 1100px; }
h1 span { color: var(--accent); }
h2 { font-size: clamp(2.5rem, 5.6vw, 5.5rem); line-height: .92; letter-spacing: -0.05em; margin-bottom: 28px; }
h3 { font-size: 2rem; letter-spacing: -0.04em; margin-bottom: 18px; }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: 48px; align-items: end; }
.hero-intro { font-size: clamp(1.35rem, 2.3vw, 2.25rem); line-height: 1.16; max-width: 760px; letter-spacing: -0.03em; margin: 0; }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 18px; border: 1px solid var(--ink); background: transparent; cursor: pointer; }
.button-primary { background: var(--ink); color: var(--paper); }
.button-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); }
.button-quiet { border-color: var(--rule); }

.statement { padding-block: clamp(54px, 7vw, 92px); }
.big-statement { max-width: 980px; font-size: clamp(2rem, 4.8vw, 4.75rem); line-height: 1; letter-spacing: -0.045em; margin: 0; }

.two-col { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(40px, 7vw, 100px); padding-block: clamp(70px, 8vw, 112px); }
.prose-stack { max-width: 700px; }
.prose-stack > p:first-child { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(2rem, 3.4vw, 3.5rem); line-height: 1.08; margin-bottom: 28px; }
.prose-stack > p { font-size: 1.08rem; }

.spec-list { list-style: none; padding: 0; margin: 38px 0 0; border-top: 1px solid var(--rule); }
.spec-list li { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--rule); font-size: .95rem; }
.spec-list li span:first-child { color: var(--muted); }

.section-heading-row { display: flex; justify-content: space-between; gap: 40px; align-items: end; padding-top: clamp(70px, 8vw, 112px); }
.section-note { max-width: 340px; color: var(--muted); margin-bottom: 34px; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); margin-top: 20px; }
.service-card { min-height: 340px; padding: 24px 24px 30px 0; border-right: 1px solid var(--rule); display: flex; flex-direction: column; }
.service-card + .service-card { padding-left: 24px; }
.service-card:last-child { border-right: 0; }
.service-card.featured { background: var(--paper-2); }
.service-number { color: var(--accent); font-size: .8rem; font-weight: 700; letter-spacing: .08em; }
.service-card p:not(.service-number) { color: #333; }
.service-meta { margin-top: auto; padding-top: 30px; font-size: .88rem; color: var(--muted)!important; }

.process-list { list-style: none; padding: 0; margin: 34px 0 0; border-top: 1px solid var(--rule); }
.process-list li { display: grid; grid-template-columns: 50px minmax(120px, .6fr) 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.process-list li span:first-child { color: var(--accent); font-size: .75rem; font-weight: 700; }
.process-list li span:nth-child(2) { font-weight: 700; }
.process-list li span:last-child { color: var(--muted); }

.specimen { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); padding-block: clamp(70px, 8vw, 112px); align-items: center; }
.specimen-copy p:not(.eyebrow) { max-width: 580px; font-size: 1.08rem; }
.muted { color: var(--muted); }
.specimen-object { min-height: 560px; display: flex; align-items: center; justify-content: center; perspective: 1000px; }
.book-cover { width: min(340px, 76%); aspect-ratio: 0.69; background: #d9d6ce; border: 1px solid #a9a59d; box-shadow: 20px 26px 0 #c7c2b7; padding: 26px; display: flex; flex-direction: column; transform: rotateY(-6deg) rotateZ(-1deg); }
.book-kicker, .book-footer { font-size: .65rem; letter-spacing: .12em; }
.book-title { margin-top: auto; margin-bottom: auto; font-size: clamp(2rem, 4vw, 4rem); line-height: .86; letter-spacing: -0.055em; font-weight: 800; }
.book-footer { margin-top: auto; color: var(--accent); }

.terms-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 22px; padding-bottom: clamp(70px, 8vw, 112px); }
.terms-grid > div { border-top: 1px solid var(--rule); padding: 18px 24px 34px 0; min-height: 140px; }
.terms-grid > div:nth-child(3n+2), .terms-grid > div:nth-child(3n+3) { padding-left: 24px; }
.terms-grid span { display: block; color: var(--accent); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.terms-grid p { max-width: 320px; margin: 0; }

.start-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 7vw, 100px); padding-block: clamp(70px, 8vw, 112px); }
.start-copy { max-width: 480px; font-size: 1.1rem; color: var(--muted); }
.intake-form { display: flex; flex-direction: column; gap: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: flex; flex-direction: column; gap: 8px; }
label > span { font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 700; }
input, textarea, select { width: 100%; background: transparent; color: var(--ink); border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding: 10px 0 12px; outline: none; }
textarea { resize: vertical; border: 1px solid var(--rule); padding: 14px; min-height: 160px; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 12px) 55%, calc(100% - 7px) 55%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
.form-note { font-size: .85rem; color: var(--muted); }
.intake-form .button { align-self: flex-start; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 20px; padding-block: 28px 40px; color: var(--muted); font-size: .82rem; }
.site-footer p { margin: 0; }

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero-grid, .two-col, .specimen, .start-section { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-top: 1px solid var(--rule); }
  .terms-grid { grid-template-columns: 1fr 1fr; }
  .terms-grid > div:nth-child(n) { padding-left: 0; padding-right: 20px; }
  .terms-grid > div:nth-child(even) { padding-left: 20px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 0; }
  .section-note { margin-top: -8px; }
}

@media (max-width: 620px) {
  .site-header { padding-block: 14px; }
  .brand-sub { display: none; }
  h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  h2 { font-size: clamp(2.8rem, 13vw, 4.4rem); }
  .hero { padding-top: 64px; }
  .hero-grid { gap: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .service-grid, .terms-grid, .field-row { grid-template-columns: 1fr; }
  .service-card, .service-card + .service-card { border-right: 0; border-top: 1px solid var(--rule); padding: 24px 0 28px; min-height: auto; }
  .service-card:first-child { border-top: 0; }
  .terms-grid > div:nth-child(n) { padding-left: 0; padding-right: 0; }
  .process-list li { grid-template-columns: 38px 1fr; }
  .process-list li span:last-child { grid-column: 2; }
  .spec-list li { grid-template-columns: 100px 1fr; }
  .specimen-object { min-height: 420px; }
  .site-footer { grid-template-columns: 1fr; }
}
