﻿/* ============================================================
   eDataWorks Ltd – shared stylesheet  (production revision)
   Plain CSS · no framework · no build step
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,wght@0,600;0,700;1,400&family=Inter:wght@400;500;600;700&display=swap');

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --surface-main:  #f7f5ef;
  --surface-card:  #ffffff;
  --surface-soft:  #eaf4ef;
  --text-main:     #172019;
  --text-muted:    #4c5a52;
  --brand:         #0f5b43;
  --brand-hover:   #0b4936;
  --on-brand:      #ffffff;
  --surface-dark:  #121915;
  --on-dark:       #f7f5ef;
  --on-dark-muted: #cbd3cd;
  --border-light:  #d7ddd8;
  --border-dark:   #344039;

  /* Legacy aliases so existing classes still compile */
  --c-bg:          var(--surface-main);
  --c-surface:     var(--surface-card);
  --c-dark:        var(--surface-dark);
  --c-dark-surface:#1c2620;
  --c-text:        var(--text-main);
  --c-muted:       var(--text-muted);
  --c-line:        rgba(23,32,25,.12);
  --c-line-dark:   rgba(255,255,255,.10);
  --c-accent:      var(--brand);
  --c-accent-light:var(--surface-soft);

  --f-serif: "Source Serif 4", Georgia, serif;
  --f-sans:  Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --r: 2px;

  --s-1:.5rem; --s-2:1rem;  --s-3:1.5rem;
  --s-4:2rem;  --s-6:3rem;  --s-8:4rem; --s-12:6rem;

  --shadow-sm: 0 1px 4px rgba(23,32,25,.07);
  --shadow-md: 0 4px 18px rgba(23,32,25,.09);

  --max-w: 1160px;
  --header-h: 72px;
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  font-size: 1rem;          /* 16 px */
  line-height: 1.65;
  color: var(--text-main);
  background: var(--surface-main);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Skip link ───────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  inset-block-start: -100%;
  inset-inline-start: 1rem;
  z-index: 9999;
  padding: .5rem 1rem;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
  font-size: .9rem;
  border-radius: var(--r);
}
.skip-link:focus { inset-block-start: .75rem; }

/* ── Screen-reader only ─────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout helpers ──────────────────────────────────────────── */
.container {
  width: min(calc(100% - 2rem), var(--max-w));
  margin-inline: auto;
}
.narrow {
  width: min(calc(100% - 2rem), 780px);
  margin-inline: auto;
}

/* ── Typography helpers ──────────────────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: .75rem;         /* 12 px min */
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-block-end: .75rem;
}
.section-dark .eyebrow,
.section-trust .eyebrow { color: #6ec9a4; }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 62ch;
  line-height: 1.6;
}

/* ── Sections ────────────────────────────────────────────────── */
.section     { padding-block: var(--s-12); }
.section-sm  { padding-block: var(--s-8); }

.section-dark {
  background: var(--surface-dark);
  color: var(--on-dark);
}
.section-dark h2 { color: var(--on-dark); }
.section-dark .lead { color: var(--on-dark-muted); }
.section-dark p   { color: var(--on-dark-muted); }

.section-tinted { background: var(--surface-soft); }

.section-trust {
  background: var(--surface-dark);
  color: var(--on-dark);
}
.section-trust h2 { color: var(--on-dark); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.5rem;
  font-family: var(--f-sans);
  font-size: .94rem;        /* ≥15 px */
  font-weight: 600;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
}

/* Green primary – always white text */
.btn-primary {
  background: var(--brand);
  color: var(--on-brand) !important;   /* enforce on all contexts */
  border-color: var(--brand);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
}

/* Outlined secondary */
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border-color: var(--text-main);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: var(--text-main);
  color: var(--surface-card);
}

/* Ghost for dark sections */
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(247,245,239,.4);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(247,245,239,.1);
  border-color: rgba(247,245,239,.7);
}

/* Global focus */
:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(247,245,239,.93);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: height .3s, box-shadow .3s;
}
.site-header.is-compact {
  height: 56px;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}
.brand-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 2.8rem;
  width: auto;
  max-width: min(220px, 38vw);
  object-fit: contain;
  transition: height .3s;
}
.is-compact .brand-logo { height: 2.25rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: .2rem;
}
.site-nav a {
  padding: .55rem .9rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r);
  transition: color .2s, background .2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text-main);
  background: rgba(23,32,25,.06);
}
.header-cta { margin-inline-start: .75rem; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r);
  cursor: pointer;
  flex-shrink: 0;
}
.menu-toggle:hover { background: rgba(23,32,25,.05); }
.hamburger { display: grid; gap: 5px; }
.hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: var(--text-main);
  transition: transform .25s, opacity .25s;
}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Section head ────────────────────────────────────────────── */
.section-head { margin-block-end: var(--s-8); }
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-block-start: .5rem;
}

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  border-bottom: 1px solid var(--border-light);
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  margin-block: .75rem 1.25rem;
  /* Promote three-clause readability */
  max-width: 16ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-block-start: var(--s-3);
}
.hero-trust {
  margin-block-start: var(--s-3);
  padding-block-start: var(--s-3);
  border-top: 1px solid var(--border-light);
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.hero-trust::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* ── Hero: full-bleed photo with overlaid copy ──────────────────
   Approved exception to the "no text over photography" rule in
   AGENTS.md, scoped to this hero only. See AGENTS.md > Visual
   Asset Rules > Photography for the recorded exception. ── */
.hero-photo {
  position: relative;
  padding-block: 0;
  border-bottom: 0;
  min-height: clamp(480px, 62vw, 640px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-photo-media { position: absolute; inset: 0; z-index: 0; }
.hero-photo-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: var(--hero-object-position);
}
.hero-photo-scrim {
  position: absolute; inset: 0; z-index: 1;
  /* Darkens the empty background area (right side, where text sits)
     without covering the two subjects on the left. */
  background: linear-gradient(90deg,
    rgba(18,25,21,0) 0%,
    rgba(18,25,21,.18) 38%,
    rgba(18,25,21,.62) 60%,
    rgba(18,25,21,.72) 100%);
}
.hero-photo-inner { position: relative; z-index: 2; }
.hero-photo .hero-copy { max-width: 46ch; margin-inline-start: auto; }
.hero-photo .hero-copy h1,
.hero-photo .hero-copy .lead,
.hero-photo .hero-copy .eyebrow { color: var(--on-dark); }
.hero-photo .hero-copy .lead { color: var(--on-dark-muted); }
.hero-photo .hero-trust { border-top-color: rgba(247,245,239,.25); color: var(--on-dark-muted); }
.hero-photo .btn-secondary {
  background: rgba(247,245,239,.92);
  color: var(--text-main);
  border-color: rgba(247,245,239,.92);
}
.hero-photo .btn-secondary:hover, .hero-photo .btn-secondary:focus-visible {
  background: var(--on-dark);
  border-color: var(--on-dark);
  color: var(--text-main);
}


.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sol-card {
  padding: var(--s-3);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  background: var(--surface-card);
  display: flex; flex-direction: column; gap: .75rem;
  transition: box-shadow .2s;
}
.sol-card:hover { box-shadow: var(--shadow-md); }
.sol-card h3 {
  font-family: var(--f-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-main);
}
.sol-card p { font-size: 1rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.sol-ai-note {
  margin-block-start: var(--s-6);
  font-size: .95rem; color: var(--text-muted);
  max-width: 72ch;
  padding-block-start: var(--s-4);
  border-top: 1px solid var(--border-light);
}
.sol-sector {
  margin-block-start: var(--s-3);
  font-size: .9rem; color: var(--text-muted); font-style: italic;
}

/* ── Trust section ───────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.trust-point {
  padding-block-start: var(--s-3);
  border-top: 1px solid var(--border-dark);
}
.trust-point h3 {
  font-family: var(--f-sans);
  font-size: 1rem; font-weight: 600;
  color: var(--on-dark);
  margin-block-end: .5rem;
}
.trust-point p { font-size: 1rem; color: var(--on-dark-muted); line-height: 1.6; }

/* ── Process ─────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step {
  counter-increment: step;
  padding-block-start: var(--s-3);
  border-top: 2px solid var(--brand);
}
.process-step::before {
  content: "0" counter(step);
  display: block;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  color: var(--brand); margin-block-end: .6rem;
}
.process-step h3 {
  font-family: var(--f-sans);
  font-size: 1rem; font-weight: 700; margin-block-end: .4rem;
}
.process-step p { font-size: 1rem; color: var(--text-muted); line-height: 1.55; }

/* ── Packages ────────────────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pkg-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  background: var(--surface-card);
  overflow: hidden;
}
.pkg-head {
  padding: var(--s-3);
  border-bottom: 1px solid var(--border-light);
}
.pkg-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand);
  margin-block-end: .4rem;
}
.pkg-head h3 { font-family: var(--f-serif); font-size: 1.35rem; }
.pkg-range { font-size: .9rem; color: var(--text-muted); margin-block-start: .25rem; }
.pkg-body { padding: var(--s-3); flex: 1; display: flex; flex-direction: column; gap: var(--s-2); }
.pkg-ideal { font-size: 1rem; color: var(--text-muted); line-height: 1.5; }
.pkg-list { display: grid; gap: .45rem; }
.pkg-list li {
  font-size: 1rem; color: var(--text-muted);
  padding-inline-start: 1.15rem; position: relative;
}
.pkg-list li::before {
  content: "✓"; position: absolute; inset-inline-start: 0;
  color: var(--brand); font-size: .78rem;
}
.pkg-outcome {
  font-size: .95rem; font-style: italic; color: var(--text-muted);
  padding: var(--s-2); border-top: 1px solid var(--border-light);
  margin-block-start: auto;
}
.pkg-foot { padding: var(--s-2) var(--s-3); }
.pkg-note {
  font-size: .9rem; color: var(--text-muted);
  margin-block-start: var(--s-4);
  line-height: 1.6;
}
.pkg-support-note {
  font-size: .9rem; color: var(--text-muted);
  margin-block-start: var(--s-2);
  line-height: 1.6;
}

/* ── Credibility strip ───────────────────────────────────────── */
.cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  list-style: none;
}
.cred-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; color: var(--text-muted);
}
.cred-item::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%; background: var(--brand);
  flex-shrink: 0;
}

/* ── CTA band ────────────────────────────────────────────────── */
.cta-band { text-align: center; }
.cta-band h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  margin-block: .75rem 1rem;
  color: var(--on-dark);
}
.cta-band .lead { margin-inline: auto; color: var(--on-dark-muted); }
.cta-actions {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .75rem;
  margin-block-start: var(--s-3);
}
.cta-email {
  margin-block-start: var(--s-3);
  font-size: .9rem; color: rgba(247,245,239,.5);
}
.cta-email a { color: rgba(247,245,239,.8); text-decoration: underline; text-underline-offset: .2em; }
.cta-email a:hover { color: var(--on-dark); }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.page-hero {
  padding-block: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--border-light);
}
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-block: .6rem .9rem; }
.page-hero .lead { margin-block-start: .5rem; }

/* ── Contact page ────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-8);
  align-items: start;
  padding-block: var(--s-8);
}
.contact-aside {}
.contact-aside-heading {
  font-family: var(--f-serif);
  font-size: 1.5rem; font-weight: 700;
  margin-block-end: var(--s-3);
}
.what-steps { display: grid; gap: var(--s-2); counter-reset: wn; }
.what-step {
  display: flex; gap: var(--s-2); align-items: baseline;
  counter-increment: wn;
}
.what-step::before {
  content: counter(wn);
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 1.6rem; height: 1.6rem;
  background: var(--surface-soft); color: var(--brand);
  font-size: .75rem; font-weight: 700; border-radius: var(--r);
  flex-shrink: 0;
}
.what-step p { font-size: 1rem; color: var(--text-muted); }
.contact-email-fallback {
  margin-block-start: var(--s-6);
  padding-block-start: var(--s-4);
  border-top: 1px solid var(--border-light);
  font-size: .9rem; color: var(--text-muted);
}
.contact-email-fallback a {
  color: var(--brand); text-decoration: underline; text-underline-offset: .2em;
}

/* ── Form ────────────────────────────────────────────────────── */
.contact-form {
  background: var(--surface-card);
  border: 1px solid var(--border-light);
  border-radius: var(--r);
  padding: var(--s-4);
}
.form-head { margin-block-end: var(--s-4); padding-block-end: var(--s-3); border-bottom: 1px solid var(--border-light); }
.form-head h2 { font-family: var(--f-sans); font-size: 1.2rem; font-weight: 700; }
.form-fields { display: grid; gap: var(--s-2); }
.form-field { display: grid; gap: .4rem; }
.form-field label { font-size: .9rem; font-weight: 600; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: .72rem .9rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--r);
  background: var(--surface-main);
  color: var(--text-main);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15,91,67,.12);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.form-field-hint { font-size: .8rem; color: var(--text-muted); }

.assessment-details {
  border: 1.5px solid var(--border-light);
  border-radius: var(--r);
}
.assessment-details summary {
  padding: .8rem 1rem;
  font-size: .92rem; font-weight: 700;
  cursor: pointer; user-select: none;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
.assessment-details summary::-webkit-details-marker { display: none; }
.assessment-details summary::after {
  content: "+"; font-size: 1.1rem; color: var(--brand);
}
.assessment-details[open] summary::after { content: "−"; }
.assessment-inner {
  padding: 1rem 1rem 1.5rem;
  border-top: 1px solid var(--border-light);
  display: grid; gap: 1rem;
}
.checkbox-group { display: grid; gap: .45rem; }
.checkbox-item { display: flex; align-items: center; gap: .5rem; font-size: .95rem; }
.checkbox-item input[type="checkbox"] {
  width: 1rem; height: 1rem;
  accent-color: var(--brand);
  flex-shrink: 0;
}

.form-email-note {
  font-size: .82rem; color: var(--text-muted);
  padding: .75rem;
  background: var(--surface-soft);
  border-radius: var(--r);
  border: 1px solid rgba(15,91,67,.15);
}
.form-error-summary {
  padding: .75rem;
  background: #fef3f2;
  border: 1px solid rgba(180,50,50,.2);
  border-radius: var(--r);
  font-size: .9rem; color: #b43232;
  display: none;
}
.form-error-summary.visible { display: block; }
.form-status {
  font-size: .9rem; min-height: 1.5rem;
  color: var(--brand); margin-block-start: .75rem;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-dark);
  color: var(--on-dark-muted);
  padding-block: var(--s-8) var(--s-4);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6);
  padding-block-end: var(--s-6);
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo {
  height: 2rem; width: auto; max-width: 190px;
  object-fit: contain; margin-block-end: var(--s-2);
  filter: brightness(0) invert(1); opacity: .8;
}
.footer-col h3 {
  font-family: var(--f-sans);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(247,245,239,.35);
  margin-block-end: var(--s-2);
}
.footer-col p { font-size: .9rem; line-height: 1.65; color: var(--on-dark-muted); }
.footer-nav { display: grid; gap: .45rem; }
.footer-nav a { font-size: .9rem; color: var(--on-dark-muted); }
.footer-nav a:hover { color: var(--on-dark); text-decoration: underline; text-underline-offset: .2em; }
.footer-email a {
  font-size: .9rem; color: var(--on-dark-muted);
  text-decoration: underline; text-underline-offset: .2em;
}
.footer-email a:hover { color: var(--on-dark); }
.footer-geo { font-size: .84rem; color: rgba(247,245,239,.35); margin-block-start: .5rem; }
.footer-legal {
  padding-block-start: var(--s-3);
  font-size: .8rem; color: rgba(247,245,239,.3);
  line-height: 1.75;
}

/* ── Reveal animation ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1060px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .hero-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .sol-grid,
  .pkg-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .trust-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  :root { --s-12: 4rem; --s-8: 3rem; }
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; inset-inline: 0;
    background: rgba(247,245,239,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: .75rem; gap: .25rem;
  }
  .site-nav.is-open .header-cta { display: flex; }
  .footer-cols { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cred-list { gap: .75rem 1.25rem; }
  .hero-copy h1 { max-width: none; }
}


/* Production revision overrides */
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.sol-card { min-height: 100%; }
.sol-ai-note, .sol-sector { max-width: 70ch; margin-block-start: var(--s-4); color: var(--text-muted); }
.sol-sector { font-weight: 600; }
.section-trust .trust-grid { grid-template-columns: repeat(3, 1fr); }
.section-trust .trust-point { border-top: 1px solid var(--border-dark); padding-block-start: var(--s-3); }
.section-trust .trust-point h3 { color: var(--on-dark); font-family: var(--f-sans); font-size: 1.08rem; line-height: 1.45; }
.process-steps { grid-template-columns: repeat(5, 1fr); }
.pkg-card { min-width: 0; }
.pkg-card .pkg-head h3 { font-size: 1.2rem; }
.pkg-card .pkg-range, .pkg-card .pkg-outcome { color: var(--text-muted); }
.cred-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-3) var(--s-6); }
.cred-item { min-width: 0; }
.footer-col h2 { font-family: var(--f-sans); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--on-dark); margin-block-end: var(--s-2); }
.hero-email { margin-block-start: .9rem; color: var(--text-muted); }
.hero-email a { color: var(--brand); text-decoration: underline; text-underline-offset: .2em; }
.contact-layout { padding-block-start: var(--s-6); }
.form-head h2 { font-family: var(--f-serif); font-size: 1.6rem; }
.form-field label, .assessment-details summary, fieldset legend { font-size: 1rem; }
.form-email-note { font-size: .9rem; }
.btn { min-height: 44px; }

@media (max-width: 1060px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .section-trust .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .solution-grid, .pkg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) { .cred-list { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .hero-copy h1 { max-width: 18ch; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; white-space: normal; }
}
@media (max-width: 360px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max-w)); }
}

/* Photography and icon system */
:root {
  --content-width: 1180px;
  --content-wide: 1280px;
  --hero-object-position: 22% 50%;
}
body { font-size: 17px; line-height: 1.65; }
.container { width: min(calc(100% - 2rem), var(--content-width)); }
.header-inner, .hero > .container, .section > .container, .site-footer > .container { width: min(calc(100% - 2rem), var(--content-wide)); }
.narrow { width: min(calc(100% - 2rem), 780px); }
.hero-copy h1 { font-size: clamp(3.4rem, 5.2vw, 5.4rem); line-height: .96; max-width: 13ch; }
.section-head h2 { font-size: clamp(2.1rem, 3vw, 3.25rem); line-height: 1.05; }
.section-icon { display: block; width: 28px; height: 28px; margin-block-end: 16px; color: var(--brand); filter: none; }
.section-trust .section-icon, .section-dark .section-icon { color: var(--on-dark); filter: brightness(0) invert(1); }
.solution-grid { gap: 1.5rem; align-items: stretch; }
.sol-card { padding: 2rem; gap: 1rem; transition: border-color .2s, box-shadow .2s, transform .2s; }
.sol-card:hover, .sol-card:focus-within { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.sol-card h3 { font-size: 1.3rem; }
.sol-card p { font-size: 1rem; }
.section-trust .trust-point h3 { font-size: 1.05rem; }
.process-step { padding-block-start: 1rem; }
.process-step .section-icon { margin-block-end: 8px; }
.process-number { display: block; color: var(--brand); font-size: .8rem; font-weight: 700; letter-spacing: .08em; margin-block-end: .35rem; }
.section-dark .process-number { color: var(--on-dark); }
.process-step p { font-size: 1rem; }
.cred-list { align-items: start; }
.cred-item { display: grid; grid-template-columns: 28px 1fr; align-items: start; column-gap: .85rem; font-size: 1rem; }
.cred-item .section-icon { grid-row: span 2; margin-block-end: 0; }
.cred-item::before { display: none; }
.site-footer { font-size: .875rem; }
.js-enabled .reveal { opacity: 0; transform: translateY(16px); transition: opacity .42s ease, transform .42s ease; }
.js-enabled .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 1200px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .process-steps { grid-template-columns: repeat(6, 1fr); }
  .process-step { grid-column: span 2; }
  .process-step:nth-child(4) { grid-column: 2 / span 2; }
  .process-step:nth-child(5) { grid-column: 4 / span 2; }
}
@media (max-width: 1199px) {
  .hero-photo .hero-copy { max-width: 40ch; }
}
@media (max-width: 767px) {
  .hero-copy h1 { font-size: clamp(2.75rem, 12vw, 4rem); max-width: 14ch; }
  .hero-photo { min-height: 0; padding-block: var(--s-8); }
  .hero-photo-scrim {
    background: linear-gradient(180deg,
      rgba(18,25,21,.2) 0%,
      rgba(18,25,21,.68) 55%,
      rgba(18,25,21,.78) 100%);
  }
  .hero-photo .hero-copy { max-width: none; margin-inline: 0; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step, .process-step:nth-child(4), .process-step:nth-child(5) { grid-column: auto; }
}
@media (max-width: 600px) {
  .header-inner, .hero > .container, .section > .container, .site-footer > .container { width: min(calc(100% - 1.5rem), var(--content-wide)); }
}
