:root {
  --bg: #faf7f1;
  --paper: #ffffff;
  --ink: #1c1611;
  --ink-soft: #5e5040;
  --rule: #d8cdb8;
  --primary: #5a3a1d;
  --primary-dark: #3d2613;
  --accent: #4a5638;
  --highlight: #f3edde;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --serif: Georgia, 'Hoefler Text', 'Iowan Old Style', serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--sans); background: var(--bg); color: var(--ink); line-height: 1.65; -webkit-font-smoothing: antialiased; }
.container { max-width: 1040px; margin: 0 auto; padding: 0 28px; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--accent); }

header { padding: 22px 0; background: var(--bg); border-bottom: 2px solid var(--primary); }
header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.brand { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--primary); text-decoration: none; letter-spacing: 0.005em; display: inline-flex; align-items: center; gap: 8px; }
.brand-icon { width: 24px; height: 24px; flex-shrink: 0; vertical-align: middle; margin-right: 6px; }
.brand small { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; }
nav a { color: var(--ink); text-decoration: none; margin-left: 24px; font-size: 14px; font-weight: 600; }
nav a:hover { color: var(--primary); }

.trade-hero { background: var(--paper); padding: 70px 0 60px; border-bottom: 1px solid var(--rule); }
.trade-hero h1 { font-family: var(--serif); font-size: 44px; font-weight: 700; color: var(--primary); line-height: 1.15; max-width: 22ch; margin-bottom: 18px; }
.trade-hero .sub { font-size: 18px; color: var(--ink-soft); max-width: 60ch; margin-bottom: 28px; line-height: 1.65; }
.credentials { display: flex; flex-wrap: wrap; gap: 36px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--rule); }
.credential strong { font-family: var(--serif); font-size: 24px; color: var(--accent); font-weight: 700; display: block; }
.credential span { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; display: block; }

.services-section { padding: 64px 0; background: var(--bg); }
.section-header { margin-bottom: 32px; }
.section-eyebrow { font-size: 12px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--ink); line-height: 1.2; max-width: 24ch; }
.services-list { list-style: none; padding: 0; counter-reset: svc; }
.svc-item { counter-increment: svc; padding: 24px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 60px 1fr auto; gap: 24px; align-items: baseline; }
.svc-item:first-child { border-top: 1px solid var(--rule); }
.svc-item::before { content: "0" counter(svc); font-family: var(--serif); font-size: 28px; color: var(--accent); font-weight: 700; }
.svc-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.svc-body p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; max-width: 60ch; margin: 0; }
.svc-price { text-align: right; font-family: var(--serif); font-size: 16px; color: var(--ink); font-weight: 700; white-space: nowrap; }
.svc-price small { display: block; font-family: var(--sans); font-size: 11px; font-weight: 500; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

.coverage-section { padding: 64px 0; background: var(--highlight); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.coverage-list { list-style: none; padding: 0; }
.coverage-list li { padding: 8px 0; padding-left: 24px; position: relative; }
.coverage-list li::before { content: '\2014'; position: absolute; left: 0; color: var(--accent); }
.coverage-list strong { color: var(--primary); }

.process-section { padding: 64px 0; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; counter-reset: step; margin-top: 36px; }
.process-step { counter-increment: step; position: relative; padding-top: 40px; }
.process-step::before { content: counter(step); position: absolute; top: -4px; left: 0; font-family: var(--serif); font-size: 36px; color: var(--accent); font-weight: 700; line-height: 1; }
.process-step::after { content: ''; position: absolute; top: 22px; left: 48px; right: 0; height: 1px; background: var(--rule); }
.process-step h4 { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.cta-strip { background: var(--primary); color: white; padding: 56px 0; }
.cta-strip .container { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.cta-strip h2 { font-family: var(--serif); font-size: 28px; font-weight: 700; line-height: 1.2; max-width: 30ch; color: white; }
.cta-strip a.btn { background: var(--bg); color: var(--primary); padding: 14px 28px; border-radius: 3px; font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; text-decoration: none; white-space: nowrap; }
.cta-strip a.btn:hover { background: var(--accent); color: white; }

article.page { padding: 64px 0; max-width: 1040px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
article.page .breadcrumb { font-size: 12px; color: var(--ink-soft); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.08em; }
article.page .breadcrumb a { color: var(--ink-soft); }
article.page h1 { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--primary); margin-bottom: 24px; line-height: 1.2; }
article.page h2 { font-family: var(--serif); font-size: 22px; font-weight: 700; color: var(--primary); margin-top: 36px; margin-bottom: 12px; }
article.page p { margin-bottom: 16px; font-size: 16px; }
article.page ul, article.page ol { margin-bottom: 18px; padding-left: 24px; }
article.page li { margin-bottom: 8px; }

footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 48px 0 28px; }
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 24px; }
footer h5 { font-family: var(--serif); font-size: 16px; font-weight: 700; color: white; margin-bottom: 12px; }
footer p, footer a { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.7; text-decoration: none; display: block; margin-bottom: 4px; }
footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 20px; font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; }

@media (max-width: 760px) {
  .trade-hero h1 { font-size: 32px; }
  .trade-hero { padding: 48px 0 40px; }
  .credentials { gap: 20px; }
  .credential strong { font-size: 20px; }
  .services-section, .coverage-section, .process-section { padding: 48px 0; }
  .svc-item { grid-template-columns: 36px 1fr; }
  .svc-item::before { font-size: 20px; }
  .svc-price { grid-column: 2; text-align: left; padding-top: 8px; }
  .coverage-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-strip .container { flex-direction: column; align-items: flex-start; text-align: left; }
  footer .container { grid-template-columns: 1fr; gap: 24px; }
  nav a { margin-left: 14px; }
  article.page h1 { font-size: 28px; }
}

/* Site images */
.hero-img { width: 100%; max-width: 900px; height: auto; border-radius: 4px; margin-top: 32px; display: block; }
.section-img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 4px; margin: 20px 0; display: block; }

/* Inner-page header fallback — for pages that still use the un-classed <header> layout */
body > header:not([class]) {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule, #d8d4cc);
  background: var(--bg, #ffffff);
}
body > header:not([class]) .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
body > header:not([class]) .brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 600; color: inherit; text-decoration: none;
}
body > header:not([class]) .brand-icon {
  width: 28px; height: 28px; flex-shrink: 0;
}
body > header:not([class]) nav {
  display: flex; gap: 22px; flex-wrap: wrap;
}
body > header:not([class]) nav a {
  font-size: 13px; color: inherit; text-decoration: none; letter-spacing: 0.04em;
}
