/* ==========================================================================
   infi8nity.com - theme stylesheet
   Loaded after assets/css/bootstrap.min.css. Bootstrap supplies the grid,
   carousel, collapse and offcanvas; everything below is the brand layer.
   ========================================================================== */

/* --------------------------------------------------------------- 1. fonts */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../fonts/open-sans-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url(../fonts/open-sans-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Open Sans Condensed is only ever used bold, so only the 700 face ships.
   Any element that asks for it at a lighter weight would otherwise pull down a
   second file for the sake of a few words. */
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/open-sans-condensed-700-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Open Sans Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/open-sans-condensed-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/roboto-condensed-700-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/roboto-condensed-700-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------- 2. tokens */
:root {
  --red: #be1325;
  --purple: #36226f;
  --accent: #ffb536;
  --navy: #1f365c;
  --ink: #000;
  --muted: #666;
  --line: #e5e5e5;
  --grey-bg: #d9d9d9;

  --sans: 'Open Sans', Helvetica, Arial, Verdana, sans-serif;
  --cond: 'Open Sans Condensed', 'Arial Narrow', Helvetica, Arial, sans-serif;
  --nav-font: 'Roboto Condensed', 'Arial Narrow', Helvetica, Arial, sans-serif;

  /* every band on the page is capped at this width */
  --shell: 1200px;

  --bs-body-font-family: var(--sans);
  --bs-body-font-size: 15px;
  --bs-body-line-height: 1.533;
  --bs-body-color: var(--ink);
  /* Bootstrap 5.3 resolves link colour through the -rgb triplets, not the
     colour properties, so both pairs have to be set. */
  --bs-link-color: var(--purple);
  --bs-link-hover-color: var(--red);
  --bs-link-color-rgb: 54, 34, 111;
  --bs-link-hover-color-rgb: 190, 19, 37;
}

/* One shell width for the top bar, header, content and footer alike. */
.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: var(--shell);
}

/* --------------------------------------------------------------- 3. base */
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 23px;
  color: var(--ink);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--cond);
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  margin: 0 0 .6em;
}
h1 { font-size: 34px; line-height: 40px; }
h2 { font-size: 26px; line-height: 30px; }
h3 { font-size: 22px; line-height: 30px; }
h4 { font-size: 18px; line-height: 24px; }
h5 { font-size: 16px; line-height: 22px; }
h6 { font-size: 15px; line-height: 20px; }

a { text-decoration: none; }

img { max-width: 100%; height: auto; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: #fff;
  color: var(--purple);
  padding: 10px 16px;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- 4. buttons */
.btn-accent,
.btn-brand {
  display: inline-block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 16px;
  line-height: 38px;
  text-transform: uppercase;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--accent);
  transition: background-color .25s ease;
}
.btn-accent:hover,
.btn-accent:focus { background: var(--purple); color: #fff; }
.btn-brand { background: var(--purple); }
.btn-brand:hover,
.btn-brand:focus { background: var(--accent); color: #fff; }

/* --------------------------------------------------------------- 5. icons */
.svg-i {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: 0 0 auto;
  vertical-align: -.125em;
}

/* --------------------------------------------------------------- 6. top bar */
.top-bar {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  line-height: 20px;
}
.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
  padding-block: 8px;
}
.top-bar a { color: #fff; }
.top-bar-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.top-bar-note .svg-i { font-size: 14px; }

.soc-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.soc-list a {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 12px;
  transition: background-color .25s ease;
}
.soc-list a:hover { background: var(--accent); }

/* --------------------------------------------------------------- 7. header */
.masthead {
  background: #fff;
  position: relative;
  z-index: 30;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}
.masthead .container {
  position: relative;         /* the containing block for the mega panels */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 90px;
}
.brand img { width: 275px; height: 75px; }

/* -- desktop navigation -------------------------------------------------- */
.nav-main,
.nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* The row stretches to the full height of the masthead so that moving the
   pointer from a menu item down into its panel never crosses dead space. */
.masthead nav { align-self: stretch; display: flex; }
.nav-main { display: flex; align-items: stretch; }
.nav-main > li { position: relative; display: flex; align-items: center; }
.nav-main .nav-top {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  border: 0;
  background: none;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 15px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 12px 11px;
  cursor: pointer;
  transition: color .2s ease;
}
.nav-main .nav-top:hover,
.nav-main > li:focus-within > .nav-top,
.nav-main > li.is-current > .nav-top { color: var(--red); }

/* the last item is a solid button */
.nav-main > li.nav-cta { align-items: center; }
.nav-main > li.nav-cta > .nav-top {
  height: auto;
  background: var(--purple);
  color: #fff;
  padding: 20px 22px;
  margin-left: 10px;
}
.nav-main > li.nav-cta > .nav-top:hover { background: var(--accent); }

/* -- mega panels: one per branch, opened on hover, focus or tap ----------- */
/* The item goes position:static so the panel's containing block is the
   masthead container and the panel can span its full width. */
.nav-main > li.has-mega { position: static; }
.nav-main .has-mega > .nav-top::after {
  content: '';
  width: .42em;
  height: .42em;
  margin: -.2em 0 0 4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.nav-main .has-mega:hover > .nav-top::after,
.nav-main .has-mega:focus-within > .nav-top::after,
.nav-main .has-mega.open > .nav-top::after { margin-top: .2em; transform: rotate(-135deg); }

.mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 26px 28px 12px;
  background: #fff;
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .17);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.nav-main > li.has-mega:hover > .mega,
.nav-main > li.has-mega:focus-within > .mega,
.nav-main > li.has-mega.open > .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
/* Columns balance themselves, so a branch can gain or lose an item without
   anyone having to re-cut the grid. */
.mega-list { columns: 3; column-gap: 38px; }
.mega-group { break-inside: avoid; margin-bottom: 20px; }
.mega-head {
  display: block;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: var(--purple);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  transition: color .2s ease;
}
.mega-head:hover { color: var(--red); }
.mega-sub { margin-top: 4px; }
.mega-sub a {
  position: relative;
  display: block;
  font-size: 13.5px;
  line-height: 19px;
  color: #444;
  padding: 6px 0 6px 15px;
  transition: color .2s ease;
}
.mega-sub a::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.mega-sub a:hover { color: var(--red); }

@media (min-width: 1200px) {
  .mega-list { columns: 4; }
}
/* Between the mobile breakpoint and 1200px the seven items and the logo only
   just fit, so tighten them rather than let a label wrap onto two lines. */
@media (max-width: 1199.98px) and (min-width: 992px) {
  .brand img { width: 225px; height: auto; }
  .nav-main .nav-top { font-size: 13.5px; padding: 12px 7px; gap: 4px; }
  .nav-main > li.nav-cta > .nav-top { padding: 16px 13px; margin-left: 6px; }
  .masthead .container { gap: 10px; }
}
.nav-main .nav-top span { white-space: nowrap; }

/* -- mobile header ------------------------------------------------------- */
.nav-toggle {
  display: none;
  border: 0;
  background: var(--purple);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 3px;
  place-items: center;
}
.nav-toggle .svg-i { font-size: 20px; }

.offcanvas-nav { width: 300px; }
.offcanvas-nav .offcanvas-header { background: var(--purple); }
.offcanvas-nav .offcanvas-title { color: #fff; margin: 0; }
.offcanvas-nav .btn-close { filter: invert(1) grayscale(1) brightness(2); }

.nav-mobile,
.nav-mobile ul { list-style: none; margin: 0; padding: 0; }
.nav-mobile a {
  display: block;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 11px 4px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:hover,
.nav-mobile .is-current > .row-link > a,
.nav-mobile li.is-current > a { color: var(--red); }
.nav-mobile ul a {
  font-family: var(--sans);
  font-weight: 400;
  text-transform: none;
  font-size: 14px;
  padding-left: 18px;
  color: #333;
}
.nav-mobile ul ul a { padding-left: 34px; }
.nav-mobile .row-link { display: flex; align-items: stretch; }
.nav-mobile .row-link > a { flex: 1 1 auto; }
.nav-mobile .sub-toggle {
  flex: 0 0 44px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  color: var(--purple);
  font-size: 12px;
}
.nav-mobile .sub-toggle .svg-i { transition: transform .2s ease; }
.nav-mobile .sub-toggle[aria-expanded='true'] .svg-i { transform: rotate(180deg); }
/* A branch with no page of its own: the whole row is the toggle. */
.nav-mobile .row-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  padding: 11px 4px;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  color: var(--ink);
  text-align: left;
}
.nav-mobile .row-toggle .svg-i { flex: 0 0 auto; color: var(--purple); font-size: 12px; transition: transform .2s ease; }
.nav-mobile .row-toggle[aria-expanded='true'] { color: var(--red); }
.nav-mobile .row-toggle[aria-expanded='true'] .svg-i { transform: rotate(180deg); }

@media (max-width: 991.98px) {
  .nav-main { display: none; }
  .nav-toggle { display: grid; }
  .masthead .container { min-height: 70px; }
  .brand img { width: 200px; height: auto; }
  .top-bar .container { justify-content: center; text-align: center; }
}

/* --------------------------------------------------------------- 8. page title */
.page-head {
  background: var(--purple);
  color: #fff;
  padding: 46px 0;
}
.page-head .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
}
.page-head h1 { color: #fff; margin: 0; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
}
.crumbs a { color: rgba(255, 255, 255, .72); }
.crumbs a:hover { color: #fff; }
.crumbs li + li::before { content: '/'; margin-right: 8px; opacity: .6; }

/* --------------------------------------------------------------- 9. content */
.main { padding: 60px 0; }
.section { padding: 60px 0; }
.section-grey { background: var(--grey-bg); }

/* centred section heading with the amber rule under it */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 40px; line-height: 46px; margin-bottom: 14px; }
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  margin: 0 auto;
  background: var(--accent);
}

.prose > *:last-child { margin-bottom: 0; }
.prose p { margin: 0 0 1em; }
.prose ul,
.prose ol { margin: 0 0 1em; padding-left: 0; list-style: none; }
.prose li {
  position: relative;
  padding: 6px 0 6px 22px;
  border-bottom: 1px solid var(--line);
}
.prose li:last-child { border-bottom: 0; }
/* amber chevron bullet, drawn in CSS instead of an icon font */
.prose li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 5px;
  height: 5px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.prose img { margin: 0 0 1em; }

/* data tables - the machinery / material spec sheets */
.table-wrap { overflow-x: auto; margin: 0 0 1.4em; }
.prose table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 19px;
}
.prose table th,
.prose table td {
  border: 1px solid var(--line);
  padding: 7px 10px;
  text-align: left;
  vertical-align: middle;
}
.prose table th {
  background: var(--purple);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
}
/* a single full-width header cell acts as a caption row */
.prose table tr > th:only-child {
  background: var(--navy);
  text-align: center;
  font-size: 15px;
}
.prose table tbody tr:nth-child(even) td { background: #fafafa; }

/* --------------------------------------------------------------- 10. hero */
.hero { position: relative; background: #1a1a1a; }
.hero-img {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 600px);
  object-fit: cover;
}
.hero-caption {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.hero-caption p {
  max-width: 1100px;
  margin: 0;
  padding: 22px 28px;
  background: rgba(54, 34, 111, .42);
  color: #fff;
  font-family: var(--cond);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 38px);
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
}
.hero .carousel-control-prev,
.hero .carousel-control-next { width: 8%; opacity: .85; }
.hero .carousel-control-prev-icon,
.hero .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  background-size: 45%;
}
.hero .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 1;
}
.hero .carousel-indicators .active { background: #fff; }

/* --------------------------------------------------------------- 11. tile carousel */
/* The machinery strip: round thumbnails, four per view, one page per slide. */
.tile-carousel { position: relative; padding: 0 46px; }
.tile { display: block; text-align: center; color: var(--navy); }
.tile img {
  width: 220px;
  max-width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 18px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tile-name {
  display: block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  text-transform: uppercase;
}
.tile:hover { color: var(--red); }
.tile:hover img {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}

.tile-carousel .carousel-control-prev,
.tile-carousel .carousel-control-next {
  width: 34px;
  height: 74px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: #e9e9e9;
  opacity: 1;
  color: var(--purple);
}
.tile-carousel .carousel-control-prev { left: 0; }
.tile-carousel .carousel-control-next { right: 0; }
.tile-carousel .carousel-control-prev:hover,
.tile-carousel .carousel-control-next:hover { background: var(--accent); color: #fff; }
.tile-carousel .svg-i { font-size: 18px; }

@media (max-width: 575.98px) {
  .tile-carousel { padding: 0 34px; }
  .tile-name { font-size: 18px; line-height: 24px; }
}

/* --------------------------------------------------------------- 12. why-us */
/* Left: a ring of icons around a white disc. Hovering an icon - or a row of
   the numbered list on the right - brings that reason into the disc.
   The dots carry their own angle as --x / --y (percentages of the stage), so
   the ring re-spaces itself if a reason is added or removed. */
.why-grid { align-items: center; }
.why-stage {
  position: relative;
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  aspect-ratio: 1;
}
.why-orbit {
  position: absolute;
  inset: 0;
  border: 2px solid #fff;
  border-radius: 50%;
}
.why-dot {
  --dot: 46px;
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  display: grid;
  place-items: center;
  width: var(--dot);
  height: var(--dot);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  /* transform does the centring only; the hover lift rides on `scale` so the
     two never overwrite each other */
  transform: translate(-50%, -50%);
  transition: scale .3s cubic-bezier(.34, 1.56, .64, 1),
              background-color .3s ease, box-shadow .3s ease;
}
.why-dot .svg-i { pointer-events: none; }
.why-dot:hover,
.why-dot.active {
  background: var(--purple);
  scale: 1.16;
  box-shadow: 0 0 0 7px rgba(54, 34, 111, .16);
}

.why-core {
  position: absolute;
  inset: 13%;   /* the disc has to hold the longest reason at every width */
  display: grid;
  place-items: center;
  padding: 6%;
  border-radius: 50%;
  background: #fff;
  text-align: center;
}
.why-core .carousel { width: 100%; }
.why-badge {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px;
}
.why-core h3 { font-size: 20px; line-height: 26px; margin-bottom: 10px; }
.why-core p { margin: 0; font-size: 14px; line-height: 21px; color: #444; }

/* The panel cross-fades (carousel-fade); its three parts rise in behind it. */
.why-core .carousel-item.active .why-badge { animation: why-rise .5s ease both; }
.why-core .carousel-item.active h3 { animation: why-rise .5s .07s ease both; }
.why-core .carousel-item.active p { animation: why-rise .5s .14s ease both; }
@keyframes why-rise {
  from { opacity: 0; transform: translateY(14px); }
}

/* Entrance: app.js adds .in the first time the ring scrolls into view. The
   ring blooms out and the icons pop on one after another. No .in - no JS -
   leaves everything sitting in its finished state. */
.why-stage.in .why-orbit { animation: why-bloom .7s ease backwards; }
.why-stage.in .why-dot {
  animation: why-pop .55s cubic-bezier(.34, 1.56, .64, 1) backwards;
  animation-delay: calc(var(--i) * 80ms);
}
@keyframes why-bloom {
  from { opacity: 0; scale: .88; }
}
@keyframes why-pop {
  from { opacity: 0; scale: 0; }
}

.why-list { margin: 0; padding: 0; list-style: none; }
.why-list li + li { margin-top: 22px; }
.why-list button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  border: 0;
  background: none;
  padding: 0;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 21px;
  text-transform: uppercase;
  color: var(--ink);
}
.why-list .num {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  transition: background-color .2s ease, color .2s ease;
}
.why-list button:hover .num,
.why-list button.active .num { background: var(--accent); color: #fff; }
.why-list button.active { color: var(--purple); font-weight: 700; }

@media (max-width: 991.98px) {
  /* below lg the container's own padding is only 12px, so hold the stage in
     far enough that a dot - which overhangs the ring by half its width -
     cannot reach the screen edge */
  .why-stage { width: calc(100% - 52px); margin-bottom: 40px; }
}
@media (max-width: 575.98px) {
  /* A phone leaves the disc little room, so it takes a bigger share of the
     ring and the copy inside it steps down a size. */
  .why-dot { --dot: 38px; font-size: 15px; }
  .why-core { inset: 9%; padding: 4%; }
  .why-badge { width: 40px; height: 40px; margin-bottom: 8px; font-size: 17px; }
  .why-core h3 { font-size: 16px; line-height: 21px; margin-bottom: 7px; }
  .why-core p { font-size: 12.5px; line-height: 17px; }
}

/* --------------------------------------------------------------- 13. CTA */
/* Replaces the old contact forms: three direct ways to reach a human. */
.cta-band { background: #f6f6f6; }
.cta-card {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  color: var(--purple);
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.cta-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
  transform: translateY(-3px);
  border-left-color: var(--purple);
  color: var(--purple);
}
.cta-ico {
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
}
.cta-card.is-whatsapp .cta-ico { background: #25d366; }
.cta-label {
  display: block;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.cta-value {
  display: block;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}
.cta-value span { display: block; }

/* the same icon+text pattern used as plain contact details */
.info-line { display: flex; align-items: center; gap: 16px; margin: 0 0 26px; }
.info-line .cta-ico { flex-basis: 34px; width: 34px; height: 34px; font-size: 16px; }
.info-line .cta-value { font-size: 18px; line-height: 24px; }

/* --------------------------------------------------------------- 14. timeline */
/* The "our history" year list on /about/. */
.timeline { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.timeline-item {
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  padding: 20px 22px;
  background: #fff;
}
.timeline-year {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  color: var(--purple);
  margin-bottom: 8px;
}
.timeline-year .svg-i { color: var(--accent); font-size: 18px; }
.timeline-item p { margin: 0; font-size: 14px; line-height: 21px; }

@media (max-width: 991.98px) { .timeline { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .timeline { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- 15. certificates */
.cert-band { background: var(--purple); padding: 46px 0; }
.cert-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 100%;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .22);
  transition: background-color .25s ease;
}
.cert-card:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.cert-card img { width: 54px; height: 54px; }
.cert-card h3 { font-size: 22px; line-height: 28px; margin: 0; color: #fff; }

/* --------------------------------------------------------------- 16. footer */
.footer {
  background: var(--red);
  color: #fff;
  padding: 56px 0 0;
}
.footer a { color: #fff; }
.footer a:hover { color: var(--accent); }
.widget-title {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.footer-contact { margin: 0 0 18px; padding: 0; list-style: none; font-size: 14px; }
.footer-contact li + li { margin-top: 14px; }
.footer-contact .lbl { display: block; color: rgba(255, 255, 255, .75); }

.link-list { margin: 0; padding: 0; list-style: none; font-size: 14px; }
.link-list li { border-bottom: 1px solid rgba(255, 255, 255, .2); }
.link-list li:last-child { border-bottom: 0; }
.link-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-weight: 700;
}
.link-list a::before {
  content: '';
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.footer .soc-list a { background: rgba(255, 255, 255, .22); }
.footer .soc-list a:hover { background: var(--accent); }

.bottom-bar {
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  font-size: 12px;
  line-height: 20px;
}
.bottom-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}
.bottom-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.bottom-nav a {
  font-family: var(--nav-font);
  font-weight: 700;
  text-transform: uppercase;
}

/* --------------------------------------------------------------- 17. to top */
.to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 4px;
  background: rgba(0, 0, 0, .35);
  color: #fff;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease, background-color .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--purple); }

/* --------------------------------------------------------------- 18. misc */
.lead-center { text-align: center; max-width: 900px; margin: 0 auto; }
.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;
}

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