:root {
  --paper: #FAF9F6; /* alternatives #FAF9F6 F3F2EE FAFCFF F9FBFF*/
  --ink: #2C3E50; /* #1A1A18 #3D3D3D*/
  --grey: #4D4D4D; /* #4D4D4D 6B6A65*/
  --line: #C9C7C0;
  --red: #C1321F;
}


* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.45;
}

.grid-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- availability bar — toggled via site.availability.active ---- */
.availability-bar {
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}
.availability-bar a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: rgba(250, 249, 246, 0.4);
}
.availability-bar a:hover { text-decoration-color: var(--paper); }

/* ---- header / nav ---- */
header.identity {
  border-bottom: 1px solid var(--ink);
  padding: 14px 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--grey);
  flex-wrap: wrap;
  gap: 10px;
}
header.identity strong { color: var(--ink); }
header.identity nav a { color: var(--grey); text-decoration: none; margin-left: 20px; }
header.identity nav a.current, header.identity nav a:hover { color: var(--ink); }
header.identity .identity-link { color: inherit; text-decoration: none; }
header.identity .identity-link:hover { color: var(--red); }

/* ---- hero ---- */
.hero {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--line);
}
.hero .eyebrow {
  grid-column: 1 / 13;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}
.hero h1 {
  grid-column: 1 / 9;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
}
.hero .lede {
  grid-column: 1 / 8;
  margin-top: 16px;
  font-size: 17px;
  color: var(--grey);
  max-width: 44em;
}
.hero .meta {
  grid-column: 9 / 13;
  font-size: 13px;
  color: var(--grey);
  border-left: 1px solid var(--line);
  padding-left: 20px;
}
.hero .meta p { margin-bottom: 12px; }
.hero .meta strong { display: block; color: var(--ink); font-weight: 700; }

/* Homepage hero is slightly bigger — no eyebrow row needed */
.hero.homepage { padding: 56px 0 40px; }
.hero.homepage h1 { font-size: clamp(38px, 6vw, 64px); grid-column: 1 / 9; }
.hero.homepage .lede { font-size: 18px; }

/* ---- generic section ---- */
section { padding: 44px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: none; }
section h2 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--grey);
  margin-bottom: 26px;
}

/* ---- N-column bordered grid (services, builds list, coverage, help) ---- */
.col-grid { display: grid; gap: 0; margin: 0 -22px; }
.col-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.col-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.col-grid > div, .col-grid > .tier, .col-grid > .option {
  border-left: 1px solid var(--line);
  padding: 0 22px;
}
.col-grid > div:first-child, .col-grid > .tier:first-child, .col-grid > .option:first-child {
  border-left: none;
}

/* ---- service / tier / option cards ---- */
.tier .num, .option .num { font-size: 13px; color: var(--red); font-weight: 700; margin-bottom: 8px; }
.tier h3, .option h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; line-height: 1.15; }
.tier .desc, .option .bestfor { font-size: 14px; color: var(--grey); margin-bottom: 14px; }
.tier .price, .option .price { font-size: 27px; font-weight: 700; margin: 8px 0 12px; }
.tier .price span, .option .price span { font-size: 12px; font-weight: 400; color: var(--grey); }
.tier ul, .option ul { list-style: none; font-size: 13px; color: var(--grey); }
.tier ul li, .option ul li { padding: 5px 0; border-top: 1px solid var(--line); }
.tier ul li:first-child, .option ul li:first-child { border-top: none; padding-top: 0; }
.tier .button { margin-top: 16px; }
.tier .timeline, .tier .bestfor {
  font-size: 12px; color: var(--grey); margin-top: 8px;
}
.tier .timeline strong, .tier .bestfor strong {
  color: var(--ink); display: block; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: 11px; margin-bottom: 2px;
}

/* ---- two-column lists (what's included/not, do/don't, promise) ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; }
.two-col .label, .two-col h3 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--grey); margin-bottom: 14px;
}
.two-col ul { list-style: none; font-size: 15px; }
.two-col ul li { padding: 7px 0; border-top: 1px solid var(--line); }
.two-col ul li:first-child { border-top: none; padding-top: 0; }

/* ---- process steps ---- */
.steps { display: grid; gap: 0; font-size: 13px; }
.steps.cols-5 { grid-template-columns: repeat(5, 1fr); }
.steps.cols-7 { grid-template-columns: repeat(7, 1fr); }
.steps div { border-left: 1px solid var(--line); padding: 0 14px; color: var(--grey); }
.steps div:first-child { border-left: none; padding-left: 0; }
.steps div .stepnum { color: var(--red); font-weight: 700; display: block; margin-bottom: 6px; }

/* ---- rate tables ---- */
.rate-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.rate-table th {
  text-align: left; font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--grey); padding-bottom: 10px;
  border-bottom: 1px solid var(--ink); font-weight: 700;
}
.rate-table td { padding: 10px 0; border-bottom: 1px solid var(--line); }
.rate-table td:last-child, .rate-table th:last-child { text-align: right; }
.rate-table .note { font-size: 12px; color: var(--grey); }

/* ---- decision framework (hosting) ---- */
.reality-check {
  margin-top: 24px; font-size: 15px; color: var(--grey);
  padding: 18px 20px; border-left: 3px solid var(--red);
  background: rgba(0,0,0,0.02);
}

/* ---- FAQ ---- */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 40px; row-gap: 24px; }
.faq-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.faq-item p { font-size: 14px; color: var(--grey); }

/* ---- trust block (homepage) ---- */
section.trust { display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 24px; }
section.trust .label {
  grid-column: 1 / 4; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--grey);
}
section.trust .quote { grid-column: 4 / 13; }
section.trust .quote p.big {
  font-size: 22px; font-weight: 400; line-height: 1.4;
  margin-bottom: 20px; max-width: 34em;
}
section.trust .dontlist {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px 32px; font-size: 14px; color: var(--ink); margin-top: 20px;
}
section.trust .dontlist span {
  color: var(--red); margin-right: 8px; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ---- bio layout (about) ---- */
.bio { display: grid; grid-template-columns: 7fr 5fr; column-gap: 40px; }
.bio p { font-size: 16px; margin-bottom: 16px; max-width: 42em; }
.bio .sidebar { border-left: 1px solid var(--line); padding-left: 24px; font-size: 13px; color: var(--grey); }
.bio .sidebar h3 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink); margin-bottom: 10px; }
.bio .sidebar ul { list-style: none; margin-bottom: 20px; }
.bio .sidebar ul li { padding: 5px 0; border-top: 1px solid var(--line); }
.bio .sidebar ul li:first-child { border-top: none; padding-top: 0; }

/* ---- proof / case studies ---- */
/* Photo gallery reads better with real air than the hairline-rule device
   used for text/data grids elsewhere — override the inherited col-grid
   border+padding spacing with a proper gutter for this specific grid. */
.col-grid:has(.proof-item) {
  column-gap: 32px;
  margin: 0;
}
.col-grid:has(.proof-item) > .proof-item {
  border-left: none;
  padding: 0;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.section-header-row h2 { margin-bottom: 0; }

/* text + one button, side by side — for a callout pointing to another
   page (e.g. "see the static option") rather than a plain inline link */
.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta-row p {
  font-size: 16px;
  color: var(--ink);
  max-width: 38em;
  margin-bottom: 0;
}
.cta-row .button { flex-shrink: 0; }

.mono-toggle-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.mono-toggle-master { cursor: pointer; }

.proof-item .swatch {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--line);
  margin-bottom: 14px;
  overflow: hidden;
}
.proof-item .swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
/* the checkbox and the grid are genuine siblings inside <section>, so
   this reaches every image in the grid at once when checked */
#colour-toggle:checked ~ .col-grid .swatch img {
  filter: grayscale(0%);
}
.proof-item h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.proof-item h3 a { color: inherit; text-decoration: none; }
.proof-item h3 a:hover { color: var(--red); }
.proof-item p { font-size: 13px; color: var(--grey); }

/* ---- blog index list ---- */
.blog-list { max-width: 44em; }
.blog-list-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.blog-list-item:first-child { border-top: none; padding-top: 0; }
.blog-date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
}
.blog-list-item h3 { font-size: 20px; font-weight: 700; margin: 6px 0 6px; }
.blog-list-item:hover h3 { color: var(--red); }
.blog-list-item p { font-size: 15px; color: var(--grey); }

/* ---- prose — styling for raw markdown output on individual posts ---- */
.prose { max-width: 42em; font-size: 16px; }
.prose h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  margin: 32px 0 14px;
}
.prose h3 { font-size: 18px; font-weight: 700; margin: 26px 0 12px; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--line); }
.prose a:hover { color: var(--red); text-decoration-color: var(--red); }
.prose blockquote {
  border-left: 3px solid var(--red);
  padding-left: 18px;
  color: var(--grey);
  margin: 20px 0;
}
.prose code {
  background: rgba(0,0,0,0.05);
  padding: 2px 6px;
  font-size: 14px;
}

/* ---- contact form ---- */
.contact-form { max-width: 34em; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--ink);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .optional-tag { color: var(--grey); text-transform: none; font-weight: 400; }
.contact-form button {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
}
.contact-form button:hover { background: var(--red); }
.contact-form .form-note {
  font-size: 13px;
  color: var(--grey);
  margin-top: 20px;
  max-width: 30em;
}

/* ---- footer ---- */
footer.site-footer {
  padding: 24px 0 44px;
  font-size: 13px;
  color: var(--grey);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
footer.site-footer .footer-links a { color: var(--grey); text-decoration: none; }
footer.site-footer .footer-links a:hover { color: var(--ink); }
footer.site-footer .footer-text { line-height: 1.5; }

.with-cta-layout {
  display: grid; grid-template-columns: repeat(12, 1fr); column-gap: 24px;
  padding: 44px 0;
}
/* ---- buttons — reusable anywhere ---- */
.button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid var(--ink);
}
.button.primary {
  background: var(--ink);
  color: var(--paper);
}
.button.primary:hover { background: var(--red); border-color: var(--red); }
.button.secondary {
  background: transparent;
  color: var(--ink);
  padding: 10px 22px; /* border eats 2px, keeps visual size matched to primary */
}
.button.secondary:hover { border-color: var(--red); color: var(--red); }

.with-cta-layout .cta { grid-column: 1 / 7; }
.with-cta-layout .cta h2 { font-size: 30px; font-weight: 700; margin-bottom: 16px; line-height: 1.1; }
.with-cta-layout .coverage {
  grid-column: 8 / 13; border-left: 1px solid var(--line);
  padding-left: 20px; font-size: 13px; color: var(--grey);
}
.with-cta-layout .coverage strong {
  display: block; color: var(--ink); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.with-cta-layout .cta a.button { margin-top: 8px; }
.with-cta-layout .coverage p { margin-bottom: 14px; }

/* ==== responsive: same collapse rule everywhere ==== */
@media (max-width: 760px) {
  .hero, section.trust, .with-cta-layout, .bio, .cta-row { display: block; }
  .cta-row p { max-width: 100%; margin-bottom: 16px; }
  .hero h1, .hero .lede { max-width: 100%; }
  .hero .meta {
    border-left: none; border-top: 1px solid var(--line);
    padding-left: 0; padding-top: 20px; margin-top: 20px;
  }
  .col-grid.cols-3, .col-grid.cols-4,
  .two-col, .steps.cols-5, .steps.cols-7, .faq {
    grid-template-columns: 1fr;
  }
  .col-grid > div, .col-grid > .tier, .col-grid > .option,
  .steps div {
    border-left: none; border-top: 1px solid var(--line); padding: 20px 0;
  }
  .col-grid > div:first-child, .col-grid > .tier:first-child,
  .col-grid > .option:first-child, .steps div:first-child {
    border-top: none; padding-top: 0;
  }
  .two-col > div { margin-bottom: 24px; }
  section.trust .quote { margin-top: 16px; }
  section.trust .dontlist { grid-template-columns: 1fr; }
  .bio .sidebar {
    border-left: none; border-top: 1px solid var(--line);
    padding-left: 0; padding-top: 20px; margin-top: 12px;
  }
  .with-cta-layout .coverage {
    border-left: none; border-top: 1px solid var(--line);
    padding-left: 0; padding-top: 20px; margin-top: 24px;
  }
}

/* ==== plain hyperlinks, use <a href="..." class="plain">text</a> ==== */
a.plain { text-decoration: none; }