/* Consolidated stylesheet generated from inline <style> tags across all HTML files. */

/* ===== From: about.html ===== */
/* ------------------------------
DESIGN TOKENS
------------------------------ */
:root {
  --brand: #0a66c2f9; /* brand (with alpha) */
  --brand-2: #0a3f88; /* gradient deep end */
  --ink: #0b1220; /* main text */
  --ink-weak: #5a6272; /* subdued text for bars */
  --paper: #ffffff; /* page */
  --tint: #f4f6f9; /* subtle band background */
  --hairline: #e6eaf2; /* separators */
  --focus: #ffbf47; /* focus ring */
  --maxw: 1100px; /* central box width */

  /* Type scale (alt.html feel) */
  --fs-body: clamp(1.02rem, 0.35vw + 0.98rem, 1.18rem);
  --fs-h1: clamp(1.9rem, 2.3vw + 1rem, 2.75rem);
  /* --fs-hero: clamp(2.25rem, 3.3vw + 1.2rem, 3.6rem); */
  --fs-hero: clamp(2.05rem, 2.8vw + 1.1rem, 2.9rem);
  --fs-small: clamp(0.92rem, 0.25vw + 0.88rem, 1rem);

  /* Spacing */
  --s-1: 8px;
  --s-2: 12px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 40px;
  --s-7: 56px;
  --s-8: 72px;
  --s-9: 96px;

  /* Elevation */
  --shadow-soft: 0 6px 18px rgba(3, 14, 38, 0.08);
  --shadow-float: 0 12px 28px rgba(3, 14, 38, 0.12);
}

/* ------------------------------
BASE / RESET
------------------------------ */
html,
body {
  height: 100%;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-size: var(--fs-body);
  line-height: 1.55;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--brand);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
:focus {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

/* Centered page box */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

/* ------------------------------
HEADER (non-sticky, correct height)
------------------------------ */
header.site-header {
  position: static;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-right {
  display: flex;
  align-items: center; /* ensure menu sits on same vertical baseline as brand-left and data-driven-top */
}
.brand-left .logo-left,
.brand-left .logo-right {
  height: 1.5em;
  width: auto;
}

.wordmark{
  font-size: clamp(1.2rem, 1vw + 1.05rem, 1.7rem);
  color: var(--brand) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.data-driven-top{
  font-size: .9rem;
  color: var(--brand) !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  /* remove ad-hoc top padding so vertical alignment is consistent */
  padding: 0;
  line-height: 1; /* keep compact line-height for stable centring */
  display: inline-flex;
  align-items: center;
}

.data-driven-btm{
  font-size: .8rem;
  color: var(--paper) !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  padding-top: 6px
}

@media (max-width: 720px) {
.data-driven-top{
visibility: hidden;
}  
}

@media (min-width: 721px) {
.data-driven-btm{
visibility: hidden;
}  
}

/* ------------------------------
CONTACT STRIP (sticky, centred, grey text)
------------------------------ */
.contact-strip {
  position: fixed !important;
  left: 0;
  right: 0;
  top: var(--contact-top, 0px) !important;
  z-index: 1100 !important;
  background: #fff;
  border-bottom: 1px solid var(--hairline);
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: 10px 0;
  font-size: var(--fs-small);
  color: var(--ink-weak);
}
.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.contact-strip .dot {
  width: 6px;
  height: 6px;
  background: var(--hairline);
  border-radius: 999px;
}
.contact-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: 10px 0;
  font-size: var(--fs-small);
  color: var(--ink-weak);
}
.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
}
.contact-strip .dot {
  width: 6px;
  height: 6px;
  background: var(--hairline);
  border-radius: 999px;
}
@media (max-width: 720px) {
  .contact-strip-inner {
    gap: var(--s-3);
    flex-wrap: wrap;
  }
}

/* ------------------------------
HERO (brand gradient + reversed text)
------------------------------ */
.hero {
  position: relative;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.18),
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.22)
  );
}
.hero .inner {
  position: relative;
  z-index: 1;
  padding: var(--s-9) 0 var(--s-8);
}
.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.1;
  margin: var(--s-3) 0;
}
.lead {
  opacity: 0.94;
}

/* ------------------------------
SECTION BANDING (Four sections)
------------------------------ */
section .section-inner {
  padding: var(--s-8) 0;
}


@media (max-width: 720px) {
section .section-inner {
    padding: var(--s-4) 0;
}
}

section h2 {
  font-size: var(--fs-h1);
  margin: 0 0 var(--s-4);
}

section.band-1 {
  background: #fff;
} 
section.band-2 {
  background: var(--tint);
} 
section.band-3 {
  background: #fff;
} 
section.band-4 {
  background: var(--tint);
} 
section.band-5 {
  background: #fff;
}
/* ------------------------------
FOOTER (hero gradient again, reversed text)
------------------------------ */
footer.site-footer {
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  color: #fff;
}
.footer-inner {
  padding: var(--s-6) 0;
  font-size: var(--fs-small);
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.footer-inner a {
  color: #fff;
  text-decoration: none;
}

/* ------------------------------
BUTTONS (match earlier look)
------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--hairline);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}
.btn.primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.btn-plain {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--hairline);
}

/* ------------------------------
COOKIE BANNER & MANAGE DIALOG (structure from earlier demo)
------------------------------ */
.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: #fff;
  border-top: 1px solid var(--hairline);
  box-shadow: 0 -8px 28px rgba(3, 14, 38, 0.12);
}
.cookie-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--s-4);
  display: grid;
  gap: 10px;
}
.cookie .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}
.modal[open] {
  display: grid;
}
.modal .scrim {
  position: absolute;
  inset: 0;
  background: rgba(3, 14, 38, 0.55);
}
.dialog {
  margin: auto;
  background: #fff;
  border-radius: 16px;
  min-width: min(92vw, 560px);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.dialog header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--hairline);
  font-weight: 700;
}
.dialog .body {
  padding: 18px 20px;
}

/* Utility for cookie dialog rows previously inline-styled in HTML */
.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}

/* Shared utility for repeated DATA | DRIVEN pieces */
.data-driven {
  font-size: 0.9rem;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}
.dialog footer {
  padding: 16px 20px;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

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

/* ===== From: about.html  (id: fixes-0907c) ===== */
/* Header text uses brand color */

/* Contact strip centered + grey */
.contact-strip-inner {
  color: #fff !important;
  justify-content: center !important;
}
.contact-strip-inner a {
  color: inherit !important;
}
/* Cookie banner buttons match current.html expectations */
#cookieAccept {
  background: #f4f6f9 !important;
  color: var(--ink) !important;
  border: 2px solid var(--brand) !important;
}
#cookieManage {
  background: #f4f6f9 !important;
  color: var(--ink) !important;
  border: 1px solid #c9d1e3 !important;
}
#cookieReject {
  background: #fff !important;
  color: var(--ink) !important;
  border: 1px solid #c9d1e3 !important;
}
.cookie .actions > * {
  border-radius: 12px;
  padding: 12px 18px;
}
/* Dialog visual fix (remove black UA border/overlay) */
dialog.modal {
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}
dialog.modal::backdrop {
  background: transparent !important;
}
.modal .scrim {
  background: rgba(3, 14, 38, 0.55) !important;
}
.dialog {
  border-radius: 16px !important;
}
/* Mobile outer margin + shrink header/strip to avoid wrap */
@media (max-width: 480px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .brand-left {
    gap: 10px !important;
  }
  .contact-strip-inner {
    gap: 12px !important;
    font-size: clamp(0.82rem, 2.6vw, 0.95rem) !important;
    white-space: nowrap;
  }
}
/* FABs (Chat + WhatsApp) */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fab[hidden] {
  /* Ensure the hidden attribute can't be accidentally overridden by other rules */
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.fab {
  /* Invisible by default to avoid FOUC if markup ends up in DOM early */
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 180ms ease;
}
.fab.is-visible {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.fab button {
  padding: 8px 8px;
  border-radius: 25px;
  font-weight: 400;
  line-height: 1;
  border: 1px solid rgba(3, 14, 38, 0.15);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 8px 24px rgba(3, 14, 38, 0.12);
  transition: filter 0.15s ease, transform 0.05s ease, border-color 0.15s ease;
}
/* Slightly trim Chat's right padding so it doesn't feel roomy */
#launchChat {
  background: #0a66c2 !important;
  color: #fff !important;
  border-color: #0a66c2 !important;
  padding-left: 12px !important;
  padding-right: 12px !important; /* balanced padding for right-edge alignment */
}

.fab .icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
}
.fab .icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.fab button:hover {
  filter: brightness(1.03);
}
.fab button:active {
  transform: translateY(0.5px) scale(0.99);
}

/* Chat: solid brand across sizes */
#launchChat {
  background: #0a66c2 !important;
  color: #fff !important;
  border-color: #0a66c2 !important;
}

/* WhatsApp: darker green for white text contrast */
#launchWA {
  background: #20b038ff !important;
  color: #ffffff !important;
  border-color: #60d66aff !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* Keep WA mobile-only */
@media (min-width: 721px) {
  #launchWA {
    display: none !important;
  }
}

/* ===== From: about.html  (id: revert-fab-padding) ===== */
/* Hard override to fully revert last spacing changes */
#launchChat {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
#launchWA {
  padding-left: 12px !important;
  padding-right: 12px !important;
  column-gap: initial !important;
}

/* ===== From: about.html  (id: fab-vertical-center) ===== */
/* Ensure perfect vertical centering regardless of future height changes */
.fab button {
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}
.fab button > * {
  align-self: center !important;
}
.fab .icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  line-height: 0 !important;
}
.fab .icon svg {
  width: 20px !important;
  height: 20px !important;
  display: block !important;
}
.fab .label {
  display: inline-block !important;
  line-height: 1 !important;
}

/* Consent hide for Chat FAB
   The global rule below forces all FAB buttons to be displayed with `inline-flex !important`.
   That suppresses the browser's default `[hidden] { display:none }` behavior.
   We restore expected semantics for the Chat button specifically so Functional=off truly hides Chat. */
#launchChat[hidden] {
  display: none !important;
}

/* ===== From: about.html  (id: fab-gap-1ch) ===== */
/* One character of space between icon and text on all FABs */
.fab button {
  gap: 1ch !important;
  column-gap: 1ch !important;
}

/* ===== From: about.html  (id: wa-gap-tweak) ===== */
/* Slightly larger visual gap on WA to match perceived spacing with other icons */
#launchWA {
  gap: 1.2ch !important;
  column-gap: 1.2ch !important;
}

/* ===== From: about.html  (id: wa-icon-110pct) ===== */
/* Enlarge WhatsApp icon ~10% */
#launchWA .icon {
  width: 22px !important;
  height: 22px !important;
}
#launchWA .icon svg {
  width: 22px !important;
  height: 22px !important;
}

/* ===== From: about.html  (id: wa-gap-tweak-2) ===== */
/* Reduce WA icon–label gap by ~25% from 1.2ch → 0.9ch */
#launchWA {
  gap: 0.9ch !important;
  column-gap: 0.9ch !important;
}

/* ===== From: about.html  (id: chat-right-align) ===== */
/* Right-align Chat button contents so label lines up with WhatsApp label */
#launchChat {
  justify-content: flex-end !important;
  text-align: right !important;
}
#launchChat .label {
  display: inline-block !important;
  text-align: right !important;
}

/* ===== From: about.html  (id: chat-padding-balance) ===== */
/* Balance Chat button: equal left/right padding and no internal right-bias */
#launchChat {
  justify-content: center !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

/* ===== From: about.html  (id: chat-width-trim) ===== */
/* Trim Chat width: match WA side padding and gap */
#launchChat {
  padding-left: 12px !important;
  padding-right: 12px !important;
  gap: 0.9ch !important;
}

/* ===== From: about.html  (id: chat-slim) ===== */
/* Make Chat button clearly narrower than WhatsApp */
#launchChat {
  padding-left: 8px !important;
  padding-right: 8px !important;
  gap: 0.8ch !important;
}

/* ===== From: about.html  (id: final-chat-narrow) ===== */
/* Force Chat narrower than WhatsApp regardless of prior overrides */
#launchChat {
  padding-left: 8px !important;
  padding-right: 12px !important;
  gap: 0.8ch !important;
  margin-left: 44px;
}

/* ===== From: about.html  (id: fab-bottom-10x) ===== */
.fab {
  bottom: var(--fab-bottom, 120px) !important;
}

/* ===== From: about.html  (id: container-pad-intermediate) ===== */
/* Ensure comfortable side padding at intermediate widths (tablets/mini-laptops) */
.container {
  padding-left: clamp(20px, 4vw, 32px) !important;
  padding-right: clamp(20px, 4vw, 32px) !important;
}

/* ===== From: about.html  (id: cookie-scrim-restore) ===== */
.cookie-scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  z-index: 65;
  pointer-events: none;
}

/* ===== From: about.html  (id: cookie-dialog-backdrop-fix) ===== */
/* Ensure Manage Choices dialog has NO overlay */
#cookieDialog::backdrop {
  background: transparent !important;
}
#cookieDialog .scrim {
  background: transparent !important;
}

/* ===== From: about.html  (id: cookie-dialog-margin) ===== */
/* Keep Manage Choices dialog away from viewport edges on small/medium screens */
#cookieDialog .dialog {
  min-width: 0 !important;
  width: min(
    560px,
    calc(100vw - 40px)
  ) !important; /* ≥20px space on each side */
  max-width: min(560px, calc(100vw - 40px)) !important;
}

/* ===== From: about.html  (id: wa-dialog-restore) ===== */
/* WhatsApp region selector: remove overlay, narrow to 70% viewport, center content */
#waScrim {
  display: none !important;
} /* kill external dim */
#waDialog::backdrop {
  background: transparent !important;
}
#waDialog .scrim {
  background: transparent !important;
}
#waDialog .dialog {
  min-width: 0 !important;
  width: 70vw !important;
  max-width: 70vw !important;
}
#waDialog .dialog header {
  text-align: center !important;
}
#waDialog .dialog .body > div {
  justify-content: center !important;
}

/* ===== From: about.html  (id: wa-hide-desktop) ===== */
/* Hide WA selector on desktop, same as the WA FAB */
@media (min-width: 721px) {
  #waDialog {
    display: none !important;
  }
}

/* ===== From: about.html  (id: wa-region-button-grey) ===== */
/* WhatsApp region buttons: match cookie 'Manage choices' grey */
#waDialog .dialog .body a.btn {
  background: #f4f6f9 !important;
  border: 1px solid #c9d1e3 !important;
  color: var(--ink) !important;
}

/* ===== From: about.html  (id: cookie-mobile-buttons) ===== */
/* Mobile: stack cookie buttons full-width and reorder */
@media (max-width: 720px) {
  .cookie .actions {
    display: flex !important;
    flex-direction: column !important;
  }
  .cookie .actions > * {
    width: 100% !important;
    padding: 12px 16px !important;
  }
  #cookieAccept {
    order: 1 !important;
  }
  #cookieManage {
    order: 2 !important;
  }
  #cookieReject {
    order: 3 !important;
  }
}

/* ===== From: about.html  (id: cookie-accept-center-mobile) ===== */
@media (max-width: 720px) {
  #cookieAccept {
    justify-content: center !important;
    text-align: center !important;
  }
}

/* ===== From: about.html  (id: contact-strip-always-visible) ===== */
/* Keep contact strip visible above all content, even near footer */
.contact-strip {
  position: sticky !important;
  top: 0 !important;
  z-index: 1100 !important;
}
footer.site-footer {
  position: relative !important;
  z-index: 0 !important;
}

/* ===== From: about.html  (id: contact-fixed-top) ===== */
:root {
  --contact-height: 48px;
}
/* Always-on top bar (above header), no JS */
body {
  padding-top: var(--contact-height) !important;
}
.contact-strip {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1500 !important;
  background: linear-gradient(145deg, var(--brand), var(--brand-2));
  border-bottom: 1px solid var(--hairline);
}
.contact-strip-inner {
  min-height: var(--contact-height) !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ===== From: about.html  (id: cookie-scrim-over-contact) ===== */
/* Dim the contact strip too when the cookie banner is visible */
#cookieScrim {
  z-index: 2000 !important;
} /* sits above contact strip */
.cookie {
  z-index: 2010 !important;
} /* banner sits above the scrim */

/* Prevent header overlap when contact strip wraps (no JS) */
@media (max-width: 720px) {
  body {
    padding-top: 84px !important;
  } /* allow for 2-line contact strip */
}
@media (max-width: 420px) {
  body {
    padding-top: 104px !important;
  } /* extra headroom for very narrow phones */
}

/* ===== From: about.html  (id: cookie-dialog-zfix) ===== */
/* Ensure Manage Choices dialog sits above the cookie banner */
#cookieDialog {
  z-index: 3000 !important;
}
.cookie {
  z-index: 2010 !important;
}
#cookieScrim {
  z-index: 2000 !important;
}

/* ===== From: about.html  (id: contact-no-wrap-shrink) ===== */
/* Keep contact strip on a single line on small screens by modestly shrinking type & gaps */
@media (max-width: 720px) {
  .contact-strip-inner {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 12px !important;
    font-size: clamp(0.88rem, 1.8vw, 0.98rem) !important;
    overflow: auto !important;
    scrollbar-width: none;
  }
  .contact-strip-inner::-webkit-scrollbar {
    display: none;
  }
  .contact-strip .dot {
    width: 5px !important;
    height: 5px !important;
  }
}
@media (max-width: 420px) {
  .contact-strip-inner {
    gap: 10px !important;
    font-size: clamp(0.84rem, 2.2vw, 0.94rem) !important;
  }
}

/* ===== From: about.html  (id: contact-padding-reset) ===== */
/* The contact strip no longer wraps, so keep header offset constant on small widths */
@media (max-width: 720px) {
  body {
    padding-top: var(--contact-height) !important;
  }
}
@media (max-width: 420px) {
  body {
    padding-top: var(--contact-height) !important;
  }
}

/* ===== From: about.html  (id: header-no-shrink-mobile) ===== */

/* ===== From: about.html  (id: header-safe-padding-fit) ===== */
/* Ensure header never kisses the viewport edge and title scales just enough to fit */
@media (max-width: 900px) {
  .pagename {
    /* keep desktop size unless truly needed, then ease down */
    font-size: clamp(1.2rem, 4.8vw, 1.7rem) !important;
    text-wrap: balance; /* nicer multi-line break */
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
  }
}

/* ===== From: about.html  (id: contact-gap-tight) ===== */
/* Tighter spacing for contact strip on mobile */
@media (max-width: 720px) {
  .contact-strip-inner {
    gap: 6px !important;
  }
  .contact-strip .dot {
    width: 4px !important;
    height: 4px !important;
  }
}
@media (max-width: 420px) {
  .contact-strip-inner {
    gap: 5px !important;
  }
}

/* ===== From: about.html  (id: contact-minpad-shrink) ===== */
/* Keep a tiny left/right padding on the contact strip and shrink just enough to preserve it */
@media (max-width: 720px) {
  .contact-strip-inner {
    padding-left: max(8px, env(safe-area-inset-left)) !important;
    padding-right: max(8px, env(safe-area-inset-right)) !important;
    gap: 6px !important; /* from earlier tighten */
    font-size: clamp(
      0.82rem,
      1.8vw,
      0.98rem
    ) !important; /* shrink only if needed */
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow: auto !important;
    scrollbar-width: none;
  }
  .contact-strip-inner::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 380px) {
  .contact-strip-inner {
    font-size: clamp(0.78rem, 2.4vw, 0.92rem) !important;
  }
}

/* ===== From: about.html  (id: contact-fit-no-scroll) ===== */
/* Force contact strip to always fit on one line without scrolling, preserving a small side padding */
@media (max-width: 720px) {
  .contact-strip-inner {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    padding-left: max(10px, env(safe-area-inset-left)) !important;
    padding-right: max(10px, env(safe-area-inset-right)) !important;
    gap: 8px !important;
    font-size: clamp(
      0.8rem,
      1.4vw + 0.72rem,
      1rem
    ) !important; /* gently shrink only when needed */
    letter-spacing: -0.005em !important; /* tiny tightening for fit, visually neutral */
    overflow: visible !important; /* no horizontal scroll */
  }
  .contact-strip .dot {
    width: 4px !important;
    height: 4px !important;
  }
}
@media (max-width: 380px) {
  .contact-strip-inner {
    gap: 6px !important;
    font-size: clamp(0.76rem, 1.5vw + 0.64rem, 0.94rem) !important;
  }
}
@media (max-width: 340px) {
  .contact-strip-inner {
    gap: 4px !important;
    font-size: 0.74rem !important;
  }
}

/* ===== From: about.html  (id: contact-inline-gap-fix) ===== */
/* Remove unintended flex gap between <strong>UK/IE</strong> and the +number text */
.contact-strip a {
  gap: 0 !important;
}

/* ===== From: about.html  (id: contact-fit-final) ===== */
/* Ensure the contact strip always fits on one line on mobile, preserves a small side padding,
and overrides global .container padding rules. */
@media (max-width: 720px) {
  .contact-strip > .container.contact-strip-inner {
    /* hard override of global container padding */
    padding-left: max(10px, env(safe-area-inset-left)) !important;
    padding-right: max(10px, env(safe-area-inset-right)) !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 8px !important;
    overflow: hidden !important; /* no horizontal scroll */
    font-size: clamp(
      0.78rem,
      1.6vw + 0.6rem,
      0.98rem
    ) !important; /* squeeze only when needed */
    letter-spacing: -0.005em !important; /* tiny visual tighten */
  }
  .contact-strip > .container.contact-strip-inner a {
    white-space: nowrap !important;
  }
  .contact-strip .dot {
    width: 4px !important;
    height: 4px !important;
  }
}
@media (max-width: 380px) {
  .contact-strip > .container.contact-strip-inner {
    gap: 6px !important;
    font-size: clamp(0.74rem, 1.8vw + 0.52rem, 0.92rem) !important;
  }
}
@media (max-width: 340px) {
  .contact-strip > .container.contact-strip-inner {
    gap: 4px !important;
    font-size: 0.72rem !important;
  }
}

/* ===== From: about.html  (id: contact-gap-ultratight) ===== */
/* Shave additional horizontal space on mobile */
@media (max-width: 720px) {
  .contact-strip-inner {
    gap: 6px !important;
  }
}
@media (max-width: 380px) {
  .contact-strip-inner {
    gap: 5px !important;
  }
}

/* ===== From: about.html  (id: contact-gap-3px) ===== */
/* Ultra-tight spacing on mobile */
@media (max-width: 720px) {
  .contact-strip-inner {
    gap: 3px !important;
  }
}

/* ===== From: about.html  (id: contact-mobile-tightest) ===== */
/* Force ultra-tight spacing and hide separators on mobile */
@media (max-width: 720px) {
  .contact-strip .contact-strip-inner {
    gap: 3px !important;
  }
  .contact-strip .dot {
    display: none !important;
  }
}

/* ===== From: about.html  (id: contact-label-shrink) ===== */
/* Slightly reduce label (UK/IE) font size on mobile, keep bold */
@media (max-width: 720px) {
  .contact-strip a strong {
    font-size: 0.9em !important;
  }
}

/* ===== From: about.html  (id: variant-a-styles-v2) ===== */
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 900px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-1)
  }
}
.hero .hero-copy .lead {
  margin: var(--s-1) 0 var(--s-4);
}
.hero .hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--s-3);
}
.proof {
  opacity: 0.9;
  font-size: clamp(0.92rem, 0.25vw + 0.88rem, 1rem);
  font-style: italic;
  margin-bottom: 2px;
}
.proof-provider {
  opacity: 0.9;
  font-size: clamp(0.92rem, 0.25vw + 0.88rem, 1rem);
  margin-top: 2px
}



.hero .hero-bio {
  display: flex;
  gap: 14px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 0px;
}
.hero .headshot {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
}
.hero .headshot svg {
  width: 36px;
  height: 36px;
  opacity: 0.9;
}
.hero .bio-text {
  line-height: 1.3;
}
.hero .bio-name {
  font-weight: 700;
}
.hero .bio-one-liner {
  opacity: 0.95;
}
.hero .bio-link {
  color: #fff;
  text-decoration: none;
}

.tri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .tri-cards {
    grid-template-columns: 1fr;
  }
}
.tri-card {
  position: relative;
  background: var(--tint);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.tri-card .pill {
  display: inline-block;
  font-size: 1.0em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hairline);
    color: var(--brand);
}
.tri-card .pill-2 {
  display: inline-block;
  font-size: 1.0em;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hairline);

}

.tri-card .sympt {
  margin: 12px 0 10px;
}
.tri-card .divider {
  height: 1px;
  background: var(--hairline);
  margin: 12px 0;
}
.tri-card .solve {
  margin: 8px 0 0;
}
.tri-card .solve strong {
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.step .num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.step h3 {
  margin: 8px 0 6px;
  font-size: 1.1em;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .bottom-grid {
    grid-template-columns: 1fr;
  }
}
.stack {
  display: grid;
  gap: var(--s-3);
}
.stack .card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.stack .card blockquote {
  margin: 0;
  padding: 0;
  border-left: 4px solid var(--brand);
  padding-left: 10px;
}
.cta-bottom {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: var(--s-4);
}

/* ===== From: about.html  (id: variant-a-styles-v3) ===== */
/* Tri-cards (Section 2) */
.tri-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .tri-cards {
    grid-template-columns: 1fr;
  }
}
.tri-card {
  position: relative;
  background: var(--tint);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.tri-card .divider {
  height: 1px;
  background: var(--hairline);
  margin: 12px 0;
}
.tri-card .solve {
  margin: 8px 0 0;
}
.tri-card .solve strong {
  font-weight: 800;
}

/* Snapshot (new Section 2) */
.snapshot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .snapshot {
    grid-template-columns: 1fr;
  }
}
.snap {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.snap h3 {
  margin: 0 0 6px;
  font-size: 1.05em;
}
.snap p {
  margin: 0;
  opacity: 0.92;
}

/* Exhibit cards */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.step .num {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.step h3 {
  margin: 8px 0 6px;
  font-size: 1.1em;
}

/* Bottom grid (FAQs & Testimonials) */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .bottom-grid {
    grid-template-columns: 1fr;
  }
}
.stack {
  display: grid;
  gap: var(--s-3);
}
.stack .card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.stack .card blockquote {
  margin: 0;
  padding: 0;
  border-left: 4px solid var(--brand);
  padding-left: 10px;
}

/* ===== From: about.html  (id: pagename-brand-restore) ===== */
/* Restore pagename styling to branded look */


/* ===== From: about.html  (id: variant-b-bio-styles) ===== */
.bio-grid {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  gap: var(--s-6);
  align-items: start;
}
@media (max-width: 980px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
}
.bio-headshot {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  color: var(--brand);
}
.bio-headshot svg {
  width: 64px;
  height: 64px;
  opacity: 0.9;
}
.bio-content .intro {
  margin: 0 0 var(--s-4);
  font-weight: 600;
  max-width: 70ch;
}
.proof-bullets {
  display: grid;
  gap: 8px;
  padding-left: 1.1em;
  margin: 0 0 var(--s-3);
}
.proof-bullets li {
  margin-left: 0.1em;
}

.wow-list {
  padding-left:22px;
  padding-right:20px;
}
.wow-list li::marker {
  color: var(--brand);
}
.micro-qs .micro-title {
  font-weight: 700;
  margin: 6px 0;
}
.micro-qs ol {
  margin: 0 0 var(--s-3);
  padding-left: 1.2em;
}
.bio-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== From: about.html  (id: variant-b-hero-grid) ===== */
.hero.no-bio .hero-grid {
  grid-template-columns: 1fr !important;
}

/* ===== From: about.html  (id: variant-b-hero-centered) ===== */
.hero.no-bio .hero-center {
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.2vw, 14px);
}
.hero .microproof {
  font-weight: 700;
  opacity: 0.98;
  font-size: clamp(1.05rem, 1.1vw + 1rem, 1.4rem);
  margin: 6px 0 2px;
}
.hero .hero-quote {
  font-style: italic;
  opacity: 0.96;
  font-size: clamp(1rem, 0.9vw + 0.9rem, 1.25rem);
  margin: 8px 0 10px;
}
.hero .hero-quote .quote-mark {
  font-size: 1.6em;
  line-height: 0;
  vertical-align: -0.2em;
  opacity: 0.5;
  padding: 0 0.15em;
}
.hero .hero-cta {
  display: flex;
  justify-content: left;
  margin-top: 4px;
}

/* ===== From: about.html  (id: home-styles) ===== */
.top-links {
  display: flex;
  gap: 18px;
  align-items: center;
  /* remove ad-hoc top padding that shifted menu vertically */
  padding: 0;
}
.toplink {
  color: var(--brand);
  text-decoration: none;
  font-weight: 700;
}
.toplink:hover {
  text-decoration: none;
}

/* ===== Footer alignment overrides ===== */
/* Ensure the three footer items sit on the same horizontal line */
.footer-inner {
  align-items: center !important;
}
.data-driven-btm {
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card h3 {
  margin: 0 0 4px;
  font-size: 1.1em;
}
.service-card p {
  margin: 0;
}
.service-card .actions {
  margin-top: 8px;
}
.service-card .actions a {
  text-decoration: none;
  font-weight: 700;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}
.testi {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.testi blockquote {
  margin: 0;
  font-style: italic;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 980px) {
  .bottom-grid {
    grid-template-columns: 1fr;
  }
}
.stack {
  display: grid;
  gap: var(--s-3);
}
.stack .card {
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.hero .hero-bio {
  display: flex;
  gap: 12px;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 8px;
}
.hero .headshot {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
}
.hero .headshot svg {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}
.hero .bio-text {
  line-height: 1.25;
  text-align: left;
}
.hero .bio-name {
  font-weight: 700;
}
.hero .bio-one-liner {
  opacity: 0.95;
}

/* ===== Header Services dropdown ===== */
.top-links {
  position: relative;
}
.top-links .menu {
  position: relative;
}
.menu-btn {
  background: transparent;
  border: 0;
  font: inherit;
  color: var(--brand);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0; /* visually match .toplink */
}
.menu-btn:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.menu-btn .caret {
  font-size: 1em;
  opacity: 1;
  transform: translateY(1px);
}
.menu-panel {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  z-index: 1200;
}
.menu.open .menu-panel {
  display: block;
}
.menu-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}
.menu-panel a:hover {
  background: var(--tint);
  text-decoration: none;
}
/* Commented-out small-screen dropdown tweaks (intentionally disabled) */

/* Desktop: also open on hover/focus */
@media (min-width: 901px) {
  .menu:hover .menu-panel,
  .menu:focus-within .menu-panel {
    display: block;
  }
}

/* Mobile: anchor panel to header container with side insets */
@media (max-width: 900px) {
  .top-links {
    position: relative;
  }
  .top-links .menu {
    position: static;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .menu-panel {
    left: auto;
    right: 12px;
    min-width: 220px;
  }
}




/* ===== Modal layering & interactivity (ensure dialog links clickable) ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
}
.modal .scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.modal .dialog {
  position: relative;
  z-index: 1;
}
.modal .dialog a,
.modal .dialog button,
.modal .dialog [role="button"],
.modal .dialog [role="link"] {
  pointer-events: auto;
}

/* ===== Cursor affordance on interactive controls ===== */
a,
a.btn,
.btn,
.btn-plain,
button,
.menu-btn,
.menu-panel a,
.toplink,
[role="button"],
[data-open-chat],
.whatsapp-link {
  cursor: pointer;
}

/* ===== Anchor offset for fixed elements (About section) ===== */
#About {
  scroll-margin-top: calc(var(--contact-height, 56px) + 12px);
}

/* ===== Custom: hero-bio restructure (doh.png headshot, name centered below) ===== */
.hero .hero-bio {
  display: grid !important;
  grid-template-columns: auto 1fr !important;
  gap: var(--s-3) !important;
  align-items: start !important;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero .bio-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .bio-headshot-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: var(--s-3);
  align-self: start; /* top aligned */
}

.linkedin-img {
  width: 127px;
}

.whatsapp-img {
  width: 25px;
}

.chat-img {
  width: 30px;
}


.hero .bio-name {
  font-weight: 700;
  text-align: center;
}

.hero .bio-right {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 70ch;
  opacity: 0.9;
  font-size: clamp(0.92rem, 0.25vw + 0.88rem, 1rem);
}

.hero .bio-link {
  color: #fff;
  text-decoration: none;
}

/* When the hero collapses to one column, stack headshot above text nicely */
@media (max-width: 900px) {
  .hero .hero-copy, .hook {
    text-align: center; /* center text on narrow */
  }

  .hero .hero-cta {
    justify-content: center; /* center buttons on narrow */
  }

  .hero .hero-bio {
    grid-template-columns: 1fr !important;
    gap: var(--s-4) !important;
  }
  .hero .bio-left {
    align-items: center;
    margin: auto;
  }

  .hero .inner {
  padding: var(--s-1) 0 var(--s-8);
  }



a {
  text-decoration: none; /* Removes underline in all states (link, visited, etc.) */
}

a:hover {
  text-decoration: none; /* Specifically removes underline on hover */
  /* Optional: Add other hover effects if needed, like color change */
  /* color: #your-hover-color; */
}

.brand-left {
  cursor: pointer; /* Hand cursor on hover for better UX */
}

.toplink {
  text-decoration: none; /* Removes underline in all states (link, visited, etc.) */
}

.toplink:hover {
  text-decoration: none; /* Specifically removes underline on hover */
  /* Optional: Add other hover effects if needed, like color change */
  /* color: #your-hover-color; */
}

