@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=Barlow:wght@400;500;600&display=swap');

:root {
  --paper: #F5F2EC;
  --paper-dim: #EBE6DB;
  --ink: #23262B;
  --ink-soft: #55595F;
  --charcoal: #1C1F22;
  --amber: #F2A900;
  --amber-deep: #C98600;
  --steel: #3B5169;
  --steel-pale: #C9D5DE;
  --rule: rgba(35, 38, 43, 0.16);
  --rule-on-dark: rgba(245, 242, 236, 0.18);
  --max: 1040px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--ink);
  margin: 0;
}

a { color: inherit; }

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

/* ---------- Header / job-ticket nav ---------- */

.site-header {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 26px;
  color: var(--ink);
}

.brand-sub {
  font-size: 13px;
  color: var(--ink-soft);
}

.job-ticket-no {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px solid var(--rule);
  padding: 3px 10px;
  display: none;
}

@media (min-width: 720px) {
  .job-ticket-no { display: inline-block; }
}

.tabs {
  display: flex;
  gap: 2px;
}

.tabs a {
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 16px;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-bottom: none;
}

.tabs a.active {
  color: var(--ink);
  background: var(--paper-dim);
  border: 1px solid var(--ink);
  border-bottom: 1px solid var(--paper-dim);
  margin-bottom: -1px;
  position: relative;
  top: 1px;
}

.tabs a:hover:not(.active) {
  color: var(--ink);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  padding: 13px 24px;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--amber);
  border-color: var(--amber-deep);
  color: var(--charcoal);
}

.btn-primary:hover { background: var(--amber-deep); }

.btn-ghost:hover { background: var(--paper-dim); }

.btn-on-dark {
  border-color: var(--paper);
  color: var(--paper);
}

.btn-on-dark:hover { background: rgba(245,242,236,0.08); }

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.hero {
  border-bottom: 2px solid var(--ink);
  padding: 64px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
}

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

.hero h1 {
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.03;
  max-width: 13ch;
}

.hero p.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 20px 0 28px;
}

/* job sheet graphic */
.job-sheet {
  border: 2px solid var(--ink);
  background: var(--paper);
  padding: 22px 24px;
  position: relative;
}

.job-sheet::before {
  content: "";
  position: absolute;
  top: 10px; left: 10px; right: -10px; bottom: -10px;
  border: 2px solid var(--rule);
  z-index: -1;
}

.job-sheet-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 10px;
  margin-bottom: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--ink-soft);
  font-size: 14px;
}

.job-line {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 15px;
}

.job-line:last-child { border-bottom: none; }

.job-line span:first-child { color: var(--ink-soft); }

.job-line .tick {
  color: var(--steel);
  font-weight: 600;
}

/* ---------- Sections ---------- */

section {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}

section:last-of-type { border-bottom: none; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 38px);
}

.section-head .note {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 34ch;
}

/* ---------- Reasons (ruled list, not cards) ---------- */

.ruled-list {
  border-top: 2px solid var(--ink);
}

.ruled-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.ruled-item .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--steel);
}

.ruled-item h3 {
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 6px;
}

.ruled-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 56ch;
}

/* ---------- Dark band ---------- */

.band-dark {
  background: var(--charcoal);
  color: var(--paper);
  border-bottom: none;
}

.band-dark .section-head .note,
.band-dark p { color: var(--steel-pale); }

.band-dark h2, .band-dark h3 { color: var(--paper); }

/* ---------- Tier cards (used sparingly, on Services page) ---------- */

.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

@media (max-width: 760px) {
  .tier-grid { grid-template-columns: 1fr; }
}

.tier {
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 30px 28px 32px;
  background: var(--paper);
}

.tier.featured { background: var(--paper-dim); }

.tier-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--steel);
  border: 1px solid var(--steel);
  display: inline-block;
  padding: 3px 9px;
  margin-bottom: 14px;
}

.tier h3 {
  font-size: 30px;
  margin-bottom: 6px;
}

.tier .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 4px;
}

.tier .price small {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--ink-soft);
}

.tier .price-note {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.tier ul {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  border-top: 1px solid var(--rule);
}

.tier li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  display: flex;
  gap: 10px;
}

.tier li::before {
  content: "—";
  color: var(--steel);
  flex-shrink: 0;
}

/* ---------- Comparison table ---------- */

.compare-wrap { overflow-x: auto; }

table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}

table.compare th, table.compare td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--rule);
}

table.compare thead th {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink-soft);
}

table.compare td:first-child, table.compare th:first-child {
  color: var(--ink-soft);
  width: 42%;
}

/* ---------- Testimonial strip ---------- */

.testi {
  border-left: 3px solid var(--amber);
  padding: 4px 0 4px 22px;
  margin-bottom: 26px;
}

.testi p.quote {
  font-size: 18px;
  margin: 0 0 8px;
  max-width: 50ch;
}

.testi .attr {
  font-size: 14px;
  color: var(--ink-soft);
}

.placeholder-note {
  font-size: 13px;
  color: var(--ink-soft);
  border: 1px dashed var(--rule);
  padding: 10px 14px;
  margin-top: 24px;
}

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

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

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.field input, .field textarea, .field select {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  padding: 11px 12px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: 3px solid var(--steel);
  outline-offset: 1px;
}

.contact-info .job-line { font-size: 16px; }

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

footer {
  background: var(--charcoal);
  color: var(--steel-pale);
  padding: 36px 0;
  font-size: 14px;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer a { text-decoration: none; }
footer a:hover { color: var(--paper); }
