:root {
  --cream: #F3EEE2;
  --ink: #23231F;
  --ink-soft: #4A453C;
  --green: #3B6D11;
  --green-dark: #27500A;
  --green-bg: #EAF3DE;
  --green-text: #3B6D11;
  --amber: #FAC775;
  --amber-dark: #854F0B;
  --amber-bg: #FAEEDA;
  --coral: #D85A30;
  --coral-dark: #993C1D;
  --coral-bg: #FAECE7;
  --border: #E5E3DA;
  --muted: #6b6a63;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
header.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px;
  color: var(--ink); text-decoration: none; }
.logo:hover { color: var(--ink); }
.logo-mark {
  width: 24px; height: 24px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
nav.main-nav { display: flex; gap: 24px; font-size: 14px; color: var(--muted); flex-wrap: wrap; }
nav.main-nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.btn {
  display: inline-block;
  border: none;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--ink); color: var(--ink); }
.btn-small { padding: 8px 16px; font-size: 13px; }

.hero {
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  margin: 4px 0 56px;
}
.hero svg.hero-illustration { display: block; width: 100%; height: auto; }
.hero-copy { padding: 36px 40px 44px; }
.hero-copy h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.28;
  margin: 0 0 16px;
  letter-spacing: -0.2px;
}
.hero-copy p {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero { background: var(--cream); border-radius: 24px; padding: 48px 40px; margin: 4px 0 48px; }
.page-hero h1 { font-size: 32px; font-weight: 600; margin: 8px 0 12px; line-height: 1.25; }
.page-hero p.lead { margin: 0; }

.icon-badge { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge-green { background: var(--green-bg); color: var(--green); }
.icon-badge-amber { background: var(--amber-bg); color: var(--amber-dark); }
.icon-badge-coral { background: var(--coral-bg); color: var(--coral-dark); }
.icon-badge-onamber { background: rgba(35,35,31,0.12); color: var(--ink); }
.icon-badge-ondark { background: rgba(255,255,255,0.12); color: #fff; }
.icon-badge-oncream { background: rgba(59,109,17,0.12); color: var(--green); }

section.block { padding: 8px 0 56px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.4px; margin-bottom: 10px; }
.eyebrow-green { color: var(--green); }
.eyebrow-amber { color: var(--amber-dark); }
.eyebrow-coral { color: var(--coral-dark); }
.eyebrow-light { color: #C0DD97; }
h2.block-title { font-size: 26px; font-weight: 600; line-height: 1.3; margin: 0 0 16px; }
p.lead { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin: 0 0 20px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.pill-green { background: var(--green-bg); color: var(--green-text); }
.pill-amber { background: var(--amber-bg); color: var(--amber-dark); }
.pill-coral { background: var(--coral-bg); color: var(--coral-dark); }

.band { border-radius: 20px; padding: 52px 44px; margin-bottom: 56px; }
.band-amber { background: var(--amber); }
.band-amber h2, .band-amber .eyebrow, .band-amber p { color: var(--ink); }
.band-amber p { opacity: 0.82; }
.band-dark { background: #23231f; color: #fff; }
.band-dark h2 { color: #fff; }
.band-dark p.lead { color: #c7c5bb; }
.band-cream { background: var(--cream); }

.stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; text-align: center; margin-top: 8px; }
.stat-grid .num { font-size: 24px; font-weight: 700; }
.stat-grid .label { font-size: 13px; color: #B4B2A9; margin-top: 6px; }
.stat-green { color: #97C459; }
.stat-amber { color: #FAC775; }
.stat-coral { color: #F09595; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; margin-top: 8px; }
.benefit-card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; }
.benefit-card .num { font-size: 26px; font-weight: 700; color: var(--green); }
.benefit-card .label { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; line-height: 1.5; }

.check-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px 28px; margin-top: 22px; }
.check-item { display: block; font-size: 15px; color: var(--ink); line-height: 1.55; }
.check-item .tick { display: inline-block; margin-right: 8px; color: var(--green); font-weight: 700; }

.social-proof { text-align: center; padding: 8px 0 56px; font-size: 15px; color: var(--ink-soft); }
.customer-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px; font-size: 15px; font-weight: 600; color: var(--ink); margin: 18px 0 12px; padding: 0; list-style: none; }
.customer-list li::before { content: "\25CF"; color: var(--green); font-size: 8px; vertical-align: middle; margin-right: 8px; }
.white-label-note { font-size: 13px; color: var(--muted); font-style: italic; }

.faq-item { margin-bottom: 22px; }
.faq-item h3 { font-size: 16px; font-weight: 600; margin: 0 0 6px; }
.faq-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

.project-card { border: 1px solid var(--border); border-radius: 16px; padding: 26px; margin-bottom: 20px; }
.project-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; }
.project-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

.pricing-card { border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; margin-bottom: 20px; }
.pricing-card .tbd { font-size: 14px; color: var(--muted); font-style: italic; margin: 10px 0 20px; }
.tbd { color: var(--muted); font-style: italic; }

.contact-box { border: 1px solid var(--border); border-radius: 16px; padding: 32px; text-align: center; }
.contact-box .email { font-size: 20px; font-weight: 600; color: var(--green); margin: 12px 0 20px; display: inline-block; }

.cta-final { border-radius: 20px; background: var(--green); text-align: center; padding: 52px 24px; margin-bottom: 40px; }
.cta-final h2 { color: #fff; font-size: 24px; font-weight: 600; margin: 0 0 20px; }
.cta-final .btn-primary { background: #fff; color: var(--green); }

footer.site-footer { padding: 32px 0 48px; border-top: 1px solid var(--border); margin-top: 16px; }
footer.site-footer .footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 20px; }
footer.site-footer nav { display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--muted); }
footer.site-footer .copyright { text-align: center; font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .wrap { padding: 0 20px; }
  .hero-copy h1 { font-size: 28px; }
  .benefit-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  nav.main-nav { order: 3; width: 100%; justify-content: center; }
  .hero-copy { padding: 28px 24px 32px; }
  .hero-copy h1 { font-size: 23px; }
  .hero-copy p { font-size: 15px; }
  .page-hero { padding: 32px 24px; }
  .page-hero h1 { font-size: 24px; }
  h2.block-title { font-size: 21px; }
  p.lead { font-size: 15px; }
  .stat-grid { grid-template-columns: 1fr; gap: 16px; text-align: left; }
  .band { padding: 32px 24px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .customer-list { flex-direction: column; align-items: center; gap: 8px; }
  footer.site-footer .footer-grid { flex-direction: column; }
}

.compliance-strip { background: var(--green-dark); color: #fff; text-align: center; padding: 10px 24px; font-size: 13.5px; line-height: 1.5; }
.compliance-strip strong { color: var(--amber); }
@media (max-width: 640px) { .compliance-strip { font-size: 12.5px; padding: 8px 16px; } }

/* Embedded 45-second explainer (index.html, under Overview).
   Isolated in an iframe so the film's own styles cannot collide with the site's. */
.explainer-embed{position:relative;width:100%;aspect-ratio:16/9;margin-top:28px;
  border-radius:10px;overflow:hidden;background:#070C15;
  box-shadow:0 18px 44px rgba(16,26,44,.28)}
.explainer-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0;display:block}
/* Phones get the portrait cut. The film itself decides its layout from the
   shape of the box it is given, so changing this aspect-ratio is the whole
   switch - there is no second video file and no device sniffing. The cap
   keeps it from becoming a skyscraper on a narrow desktop window. */
@media (max-width:640px){
  /* width is derived from the height cap, not clamped after the fact - with
     width:auto the box fills the column and max-height just letterboxes it. */
  .explainer-embed{margin-top:20px;border-radius:8px;
    aspect-ratio:9/16;width:min(100%,calc(78vh * 9 / 16));
    margin-left:auto;margin-right:auto}
}

/* ---- share row (watch.html) ---------------------------------------- */
.share-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border);
}
.share-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); margin-right: .35rem;
}
.share-btn {
  display: inline-block; font: inherit; font-size: .88rem; font-weight: 600;
  line-height: 1; padding: .6rem .95rem; border-radius: 999px; cursor: pointer;
  color: var(--ink); background: #FFF; border: 1px solid var(--border);
  text-decoration: none; transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.share-btn:hover { background: var(--green-bg); border-color: var(--green); transform: translateY(-1px); }
.share-btn:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.share-native { background: var(--green); border-color: var(--green); color: #FFF; }
.share-native:hover { background: var(--green-dark); border-color: var(--green-dark); }
.share-done { font-size: .85rem; color: var(--green-text); font-weight: 600; }
@media (max-width: 560px) {
  .share-row { gap: .4rem; }
  .share-btn { font-size: .82rem; padding: .55rem .8rem; }
}

/* ---------------------------------------------------------------------------
   Enquiry form (contact.html)
   Grid, not flex, for the field rows and the interest checkboxes: `display:flex`
   on a container whose children include bare inline nodes turns every one of
   them into its own column, which is the bug that has bitten .check-item three
   times. Explicit grid columns cannot do that.
--------------------------------------------------------------------------- */
.enquiry-form { max-width: 760px; margin: 0 auto; text-align: left; }
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
}
.field { display: grid; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
  letter-spacing: .02em;
}
.field label .req { color: var(--coral); font-weight: 700; }
.field input, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  padding: 11px 12px; transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 109, 17, .14);
}
.field input:invalid:not(:placeholder-shown) { border-color: var(--coral); }

.interest-group { grid-column: 1 / -1; display: grid; gap: 10px; }
.interest-group > .group-label {
  font-size: 13px; font-weight: 700; color: var(--ink-soft);
}
.interest-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.interest-options label {
  display: flex; align-items: center; gap: 9px;
  font-size: 14.5px; color: var(--ink); cursor: pointer;
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.interest-options label:hover { border-color: var(--green); background: var(--green-bg); }
.interest-options input { width: 16px; height: 16px; accent-color: var(--green); flex: none; }

/* Honeypot. Hidden from people, still filled in by naive bots. */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-actions { margin-top: 22px; display: grid; gap: 12px; justify-items: start; }
.form-note { font-size: 13px; color: var(--muted); }
.form-status { font-size: 14.5px; border-radius: 8px; padding: 12px 14px; display: none; }
.form-status.show { display: block; }
.form-status.ok   { background: var(--green-bg); color: var(--green-text); border: 1px solid var(--green); }
.form-status.bad  { background: var(--coral-bg); color: var(--coral-dark); border: 1px solid var(--coral); }
.enquiry-form button[disabled] { opacity: .6; cursor: progress; }

@media (max-width: 720px) {
  .field-grid { grid-template-columns: minmax(0, 1fr); }
  .interest-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 430px) {
  .interest-options { grid-template-columns: minmax(0, 1fr); }
}
/* Inline text link. The global `a { color: inherit; text-decoration: none }`
   makes an unclassed link indistinguishable from body text. */
.ulink { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.ulink:hover { color: var(--green-dark); }
