:root {
  --paper: #f6f3ee;
  --ink: #1e1c19;
  --ink-soft: rgba(30, 28, 25, 0.72);
  --ink-muted: rgba(30, 28, 25, 0.55);
  --line: rgba(30, 28, 25, 0.14);
  --oak: #b98b5a;
  --oak-deep: #8a5f37;
  --moss: #4b5a3f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Iowan Old Style", "Charter", Georgia, serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.site-header {
  padding: 5rem 1.5rem 3rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--moss);
  font-size: 0.78rem;
  margin: 0;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin: 0.75rem 0 1.25rem;
}

.subhead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0 auto;
}

.cta-row {
  margin: 2.25rem 0 0;
}

.cta {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  margin: 0.35rem;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta.primary {
  background: var(--ink);
  color: var(--paper);
}

.cta.primary:hover {
  background: var(--oak-deep);
}

.cta.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
}

.cta.secondary:hover {
  border-color: var(--ink);
}

section {
  max-width: 62rem;
  padding: 4rem 1.5rem;
  margin: 0 auto;
}

section h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

section h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

section p {
  color: var(--ink-soft);
}

.muted {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem 2.5rem;
}

.card {
  padding: 0;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 2rem 2.5rem;
}

.steps li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.85rem;
  color: var(--oak-deep);
  letter-spacing: 0.05em;
  padding-top: 0.35rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.work-grid figure {
  margin: 0;
}

.work-placeholder {
  aspect-ratio: 4 / 3;
  width: 100%;
  border-radius: 0.75rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(0, 0, 0, 0.08)),
    var(--oak);
  border: 1px solid var(--line);
}

.work-grid figcaption {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

#enquire {
  text-align: center;
  max-width: 44rem;
}

#enquire p {
  max-width: 32rem;
  margin: 0 auto;
}

footer {
  padding: 3rem 1.5rem 4rem;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
