

/* Injected: neutralise user-agent button chrome. See FORM_CONTROL_RESET.
   One element selector, so any page rule naming a class still wins. */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  background-image: none;
  font: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
}
:root {
  --maxw: 1080px;
  --gutter: 24px;
  --section-y: 96px;

  --primary: #00316a;
  --accent: #3067a6;
  --bg: #f7f8f9;
  --ink: #1c1e21;
  --white: #ffffff;
  --brand-1: #00316a;
  --brand-2: #3067a6;
  --brand-3: #536b8a;
  --brand-4: #f7f8f9;
  --brand-5: #1c1e21;

  /* On-primary (#00316a) */
  --on-primary: #ffffff;
  --on-primary-muted: #b8cfe8;
  --link-on-primary: #90bde0;

  /* On-accent (#3067a6) */
  --on-accent: #ffffff;
  --on-accent-muted: #c8daf0;
  --link-on-accent: #d8e8f8;

  /* On-bg (#f7f8f9) */
  --on-bg: #1c1e21;
  --on-bg-muted: #4a5060;
  --link-on-bg: #00316a;

  /* On-ink (#1c1e21) */
  --on-ink: #ffffff;
  --on-ink-muted: #b0b5bf;
  --link-on-ink: #90bde0;

  /* On-white (#ffffff) */
  --on-white: #1c1e21;
  --on-white-muted: #4a5060;
  --link-on-white: #00316a;

  /* On-brand-1 (#00316a) */
  --on-brand-1: #ffffff;
  --on-brand-1-muted: #b8cfe8;
  --link-on-brand-1: #90bde0;

  /* On-brand-2 (#3067a6) */
  --on-brand-2: #ffffff;
  --on-brand-2-muted: #c8daf0;
  --link-on-brand-2: #d8e8f8;

  /* On-brand-3 (#536b8a) */
  --on-brand-3: #ffffff;
  --on-brand-3-muted: #ccd5e0;
  --link-on-brand-3: #dce8f4;

  /* On-brand-4 (#f7f8f9) */
  --on-brand-4: #1c1e21;
  --on-brand-4-muted: #4a5060;
  --link-on-brand-4: #00316a;

  /* On-brand-5 (#1c1e21) */
  --on-brand-5: #ffffff;
  --on-brand-5-muted: #b0b5bf;
  --link-on-brand-5: #90bde0;

  --t-label: 13px;
  --t-body: 17px;
  --t-lead: 21px;
  --t-h2: 30px;
  --t-h1: 46px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-body);
  color: var(--on-bg);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── HEADER ── */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.header-logo img {
  height: 72px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

nav ul li a {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-label);
  font-weight: 500;
  color: var(--on-primary-muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav ul li a:hover { color: var(--on-primary); }

nav ul li.nav-cta a {
  background: var(--accent);
  color: var(--on-accent);
  padding: 8px 16px;
  border-radius: 4px;
}

nav ul li.nav-cta a:hover { background: var(--brand-3); }

/* ── ANNOUNCEMENT STRIP ── */
.strip {
  background: var(--accent);
  padding: 10px var(--gutter);
  text-align: center;
}

.strip-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.strip p {
  font-size: var(--t-label);
  color: var(--on-accent);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.strip a {
  font-size: var(--t-label);
  color: var(--on-accent);
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.strip-divider {
  width: 1px;
  height: 14px;
  background: var(--on-accent-muted);
  opacity: 0.4;
}

/* ── HERO ── */
.hero {
  background: var(--primary);
  padding: 80px 0 80px;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-text {}

.hero-label {
  font-size: var(--t-label);
  font-weight: 600;
  color: var(--on-primary-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: var(--t-h1);
  color: var(--on-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-sub {
  font-size: var(--t-lead);
  color: var(--on-primary-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.hero-price {
  font-size: var(--t-body);
  color: var(--on-primary-muted);
  margin-bottom: 36px;
}

.hero-price strong {
  color: var(--on-primary);
  font-weight: 600;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-body);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--brand-3); }

.hero-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── WHAT WE DO ── */
.what-we-do {
  background: var(--white);
  padding: var(--section-y) 0;
}

.section-label {
  font-size: var(--t-label);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-heading {
  font-size: var(--t-h2);
  color: var(--on-white);
  margin-bottom: 48px;
  max-width: 560px;
}

.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.card {
  padding: 28px 24px;
  background: var(--bg);
  border-radius: 6px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--accent);
}

.card h3 {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--on-bg);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card p {
  font-size: var(--t-label);
  color: var(--on-bg-muted);
  line-height: 1.6;
}

/* ── TESTIMONIAL ── */
.testimonial {
  background: var(--primary);
  padding: var(--section-y) 0;
}

.testimonial-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: var(--t-lead);
  color: var(--on-primary);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-attr {
  font-size: var(--t-label);
  color: var(--on-primary-muted);
  font-weight: 500;
}

.testimonial-image-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.testimonial-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--bg);
  padding: 40px 0;
}

.trust-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.trust-item span {
  font-size: var(--t-label);
  color: var(--on-bg-muted);
  font-weight: 500;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--white);
  padding: var(--section-y) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: var(--t-h2);
  color: var(--on-white);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: var(--t-body);
  color: var(--on-white-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail span {
  font-size: var(--t-body);
  color: var(--on-white-muted);
}

.contact-detail a {
  color: var(--link-on-white);
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg);
  border-radius: 6px;
  padding: 36px 32px;
}

.contact-form-wrap h3 {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-body);
  font-weight: 600;
  color: var(--on-bg);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: var(--t-label);
  font-weight: 600;
  color: var(--on-bg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d0d5dd;
  border-radius: 4px;
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-body);
  color: var(--on-bg);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-block;
  background: var(--accent);
  color: var(--on-accent);
  font-family: 'Inter', sans-serif;
  font-size: var(--t-body);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.btn-submit:hover { background: var(--brand-3); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-message {
  display: none;
  border-radius: 4px;
  padding: 16px 18px;
  font-size: var(--t-body);
  font-weight: 500;
  margin-top: 4px;
}

.form-message.success {
  background: var(--primary);
  color: var(--on-primary);
  border-left: 4px solid var(--accent);
}

.form-message.error {
  background: var(--bg);
  color: var(--on-bg);
  border-left: 4px solid var(--brand-3);
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: var(--section-y) 0 40px;
}

.footer-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 20px;
}

.footer-blurb {
  font-size: var(--t-body);
  color: var(--on-ink-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-label);
  font-weight: 600;
  color: var(--on-ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: var(--t-body);
  color: var(--on-ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--on-ink); }

.footer-contact p {
  font-size: var(--t-body);
  color: var(--on-ink-muted);
  line-height: 1.7;
}

hr.footer-rule {
  max-width: var(--maxw);
  margin: 0 auto 24px;
  padding: 0 var(--gutter);
  border: none;
  border-top: 1px solid #2e3238;
}

.footer-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: var(--t-label);
  color: var(--on-ink-muted);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: var(--t-label);
  color: var(--on-ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: var(--on-ink); }

.sohosumo-credit {
  font-size: var(--t-label);
  color: var(--on-ink-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
}

.sohosumo-credit:hover { color: var(--on-ink); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  border-top: 2px solid var(--accent);
  padding: 16px var(--gutter);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: var(--t-label);
  color: var(--on-ink-muted);
  flex: 1;
  min-width: 200px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: var(--t-label);
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--on-accent);
}

.cookie-btn-accept:hover { background: var(--brand-3); }

.cookie-btn-decline {
  background: transparent;
  color: var(--on-ink-muted);
  border: 1.5px solid #2e3238;
}

.cookie-btn-decline:hover { color: var(--on-ink); border-color: var(--brand-3); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  :root {
    --section-y: 56px;
    --t-h1: 34px;
    --t-h2: 26px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px var(--gutter);
  }

  nav ul {
    gap: 4px;
  }

  nav ul li a {
    font-size: 11px;
    padding: 5px 8px;
  }

  .hero {
    padding: 48px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-image-wrap {
    order: -1;
  }

  .four-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .testimonial-image-wrap {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .strip-inner {
    gap: 16px;
  }

  .strip-divider { display: none; }

  .trust-bar-inner {
    gap: 20px;
    justify-content: flex-start;
  }

  .contact-form-wrap {
    padding: 24px 18px;
  }

  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  nav ul li.nav-cta { display: none; }
}

/* Derived palette roles. See derivePaletteRoles. */
:root {
  --on-primary: #ffffff;   /* primary text on var(--primary) — 12.75:1 */
  --on-primary-muted: #a8b9cc;   /* secondary / muted text on var(--primary) — 6.36:1 */
  --link-on-primary: #a2bbd7;   /* link text on var(--primary) — 6.45:1 */
  --on-accent: #ffffff;   /* primary text on var(--accent) — 5.81:1 */
  --on-accent-muted: #fbfcfd;   /* secondary / muted text on var(--accent) — 5.65:1 */
  --on-bg: #1c1e21;   /* primary text on var(--bg) — 15.71:1 */
  --on-bg-muted: #5e5f62;   /* secondary / muted text on var(--bg) — 6:1 */
  --link-on-bg: #00316a;   /* link text on var(--bg) — 11.99:1 */
  --on-ink: #ffffff;   /* primary text on var(--ink) — 16.71:1 */
  --on-ink-muted: #a0a0a2;   /* secondary / muted text on var(--ink) — 6.4:1 */
  --link-on-ink: #8ca2bc;   /* link text on var(--ink) — 6.37:1 */
  --on-white: #1c1e21;   /* primary text on var(--white) — 16.71:1 */
  --on-white-muted: #656668;   /* secondary / muted text on var(--white) — 5.75:1 */
  --link-on-white: #00316a;   /* link text on var(--white) — 12.75:1 */
  --text-on-dark: #ffffff;   /* primary text on ANY dark surface on var(--accent) — 5.81:1 */
  --text-muted-on-dark: #fbfcfd;   /* muted text on ANY dark surface on var(--accent) — 5.65:1 */
  --text-on-light: #1a1a1a;   /* primary text on ANY light surface on var(--bg) — 16.37:1 */
  --text-muted-on-light: #616161;   /* muted text on ANY light surface on var(--bg) — 5.82:1 */
}

footer{color:var(--on-ink-muted)}:where(footer a){color:inherit}

/* Zero-specificity colour for elements the design left without one.
   Loses to every author rule — see enforceInheritedTextColour. */
:where(header){color:#ffffff}:where(header a){color:inherit}
:where(.strip){color:#ffffff}:where(.strip a){color:inherit}
:where(.strip-divider){color:#1a1a1a}:where(.strip-divider a){color:inherit}
:where(.hero){color:#ffffff}:where(.hero a){color:inherit}
:where(.what-we-do){color:#1a1a1a}:where(.what-we-do a){color:inherit}
:where(.card){color:#1a1a1a}:where(.card a){color:inherit}
:where(.testimonial){color:#ffffff}:where(.testimonial a){color:inherit}
:where(.trust-bar){color:#1a1a1a}:where(.trust-bar a){color:inherit}
:where(.contact-section){color:#1a1a1a}:where(.contact-section a){color:inherit}
:where(.contact-form-wrap){color:#1a1a1a}:where(.contact-form-wrap a){color:inherit}
:where(footer){color:#ffffff}:where(footer a){color:inherit}
:where(#cookie-banner){color:#ffffff}:where(#cookie-banner a){color:inherit}

/* Injected: mobile navigation. See enforceMobileNav. */
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; }
.mobile-nav[hidden] { display: none; }
.mobile-nav { background: var(--primary); }
:where(.mobile-nav a) { color: var(--on-primary-muted); }
@media (max-width: 760px) {
  [data-ss-nav-links][data-ss-nav-links] { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; flex-direction: column; gap: 4px; padding: 12px 16px 18px; border-top: 1px solid rgba(128,128,128,.25); }
  .mobile-nav a { padding: 10px 0; text-decoration: none; font-size: 16px; }
}
@media (min-width: 761px) { .mobile-nav { display: none; } }
